/*Ridimensiona layout per schermi di risoluzioni elevate*/	
	
var widthPx = (1100 * 100)/ screen.width; 
	
if (screen.width > 1280) {
	output='<style type="text/css"> div#container { margin: auto; width:'+ widthPx +'%; } div#footer { margin: auto; width:'+ widthPx +'%; } div#header { margin: auto; width:'+ widthPx +'%; } </style>';

	document.write(output);
}

