// JavaScript Document


$(document).ready(function(){  
/*
	$('html, body').stop().animate({
			scrollTop: 540-document.documentElement.clientHeight/2
		}, 1500,'easeInOutExpo');
	
	
	$('ul.menu a').bind('click',function(event){
		var $anchor = $(this);
			$('html, body').stop().animate({
				scrollTop: $($anchor.attr('href')).offset().top+540-document.documentElement.clientHeight/2
			}, 1500,'easeInOutExpo');
		event.preventDefault();
	});
*/
	// aminação menu
	$(".item a").hover(function() {  
			 $(this).addClass("menuOver", 'fast');
			//$(this).stop().animate({ backgroundColor: "#fcdb05"}, 800);  
		},function() {  
			$(this).removeClass("menuOver", 'fast');
			//$(this).stop().animate({ backgroundColor: "transparent" }, 800);  
	});  
	
	
	// slider vertical mega	
    jQuery('#mycarousel').jcarousel({
        vertical: true,
        scroll: 2
    });
	
	
	// lightbox
	 $("a[rel^='prettyPhoto']").prettyPhoto();
	
});



