$(document).ready(function () {
	
	$('#tela').flash({
		swf: 'tela ragno.swf',
		height: '100%', width: '100%',
		params: {  wmode: 'transparent', scale: 'noscale'}
	});

	
	$('#ogsabbia').flash({
		swf: 'ogsabbia.swf',
		height: '100%', width: '100%',
		params: {  wmode: 'transparent', scale: 'noscale'}
	});

	// dispongo il menu in funzione	della dimensione della finestra
	aw=document.documentElement.clientWidth;
	ah=document.documentElement.clientHeight;
	
	
	left_menu = (aw - $(".menu").width()) / 2;
	size_mare = ah-$("#header").height();
	left_firma = (aw - $("#firma").width()) / 2;

	$("#shadowMainContent").css("width", aw +"px");
	$("#firma").css("left", left_firma +"px");
	if(size_mare >= $("#mainContent").height()){
		$("#container").css("height", (ah-$("#header").height()) +"px");
	}

	//ah=document.documentElement.clientHeight;
	$("#firma").css("top", ($("body").height()-20) +"px");

	$(".menu").css("left", left_menu +"px");



	// RI-dispongo il menu in funzione	della dimensione della finestra
	$(window).resize(function() {
	 	aw=document.documentElement.clientWidth;
		ah=document.documentElement.clientHeight;
		left_menu = (aw - $(".menu").width()) / 2;
		left_firma = (aw - $("#firma").width()) / 2;

		$("#shadowMainContent").css("width", aw +"px");
		$(".menu").css("left", left_menu +"px");
		$("#firma").css("left", left_firma +"px");
		size_mare = ah-$("#header").height();
		if(size_mare >= $("#mainContent").height()){
			$("#container").css("height", (ah-$("#header").height()) +"px");
		}
		$("#firma").css("top", ($("body").height()-20) +"px");
		
	});

});
