// jQuery Document Ready
$(function(){
	//preload images from css
	$.preloadCssImages();
	
	//PRETTY PHOTO ENABLING AND CUSTOM EFFECT
	$("a[rel^='prettyPhoto']").prettyPhoto();
	
	//Resize content to fit broswer area
	contentInitialHeight = $("#container").height();
	$("#container").height($(this).height()-180);	
	
	//Start logo slideshow
	$("#logo").logoSlideshow();
	
	//MENU EFFECTS
	$(".mainmenu ul li").hover(
		
		function(){ 
			//adjust submenus width
			var  menuWidth = $(this).children("ul").width();
			$(this).children("ul").css("width",menuWidth);
			$(this).children("ul").find("ul").css('left', menuWidth );	
			
			//open submenu if any
			$(this).children("ul").css("display","block");
			$(this).children("ul").css("opacity","0.0");
			$(this).children("ul").animate({
				opacity: 1.0,
    			top: '+=10'
			},200); 			
		},
		function(){
			//close submenu if any
			$(this).children("ul").animate({
				opacity: 0.0,
    			top: '-=10'
			},100,function() { $(this).css("display","none");} ); 			
		}
	);
});


//RESIZE
$(window).resize(function() {
	if (contentInitialHeight<$(this).height()-180)
		$("#container").height($(this).height()-180); 
});

