//SCRIPTS JavaScript
window.onload = function () {
	var options = {
	  overlayColor: '#ffffff',
	  overlayOpacity: 0.8
	};
	Shadowbox.init(options);
};

//SCRIPTS jQuery
jQuery(function(){

$(document).ready(function () {
	InitMinHeightContent();
	InitMenu();
});

$(window).bind('resize', function() {
	InitMinHeightContent();
});

//Inizializza menu
function InitMenu() {
	$("ul.sf-menu").supersubs({ 
		minWidth:    12,	// minimum width of sub-menus in em units 
		maxWidth:    27,	// maximum width of sub-menus in em units 
		extraWidth:  1		// extra width can ensure lines don't sometimes turn over 
											// due to slight rounding differences and font-family 
	}).superfish();	// call supersubs first, then superfish, so that subs are 
									// not display:none when measuring. Call before initialising 
									// containing tabs for same reason. 
	$("ul.sf-menu li:last-child").css('border-bottom', '1px solid #fff');
};


//Imposta altezza minima #content
function InitMinHeightContent() {
	var header = 290// Altezza header: 290px
	var menu   = 69	// Altezza menu:    69px
	var footer = 55	// Altezza footer:  49px + border-top: 1px + padding-top:5px
	var totale = header + menu + footer;
	if ($('#container-content').height() < $(window).height() - totale) {
		//$('#container-content').css("height", $(window).height() - totale);
		$('#container-content').height($(window).height() - totale);
		$('#content_left').height($('#container-content').height() - 50);
	};
};

});



