 $(document).ready(function() {
	count = 1;
	$('#menu > ul > li').each(function(count){
		$(this).css('z-index', count); 
		count++;
	});
	
	$('#menu > ul > li').hover(function(){
		$this = $(this).children('a');
		$this.stop().animate({backgroundPosition:"(0 0px)", color:'#353945'},400);
		$(this).children('ul').stop().animate({top:"20px"},800,"easeOutElastic");
	},function() {
		$(this).children('ul').stop().animate({top:"-150px"},400);
		$this.stop().animate({backgroundPosition:"(0px -66px)", color:'#FFF'},400);
	});
	
	$('#menu ul li ul li a').hover(function(){
		$(this).stop().animate({paddingLeft: "8px", color:'#FFF', fontWeight:'bold'},100);
	},function() {
		$(this).stop().animate({paddingLeft: "5px", color:'#CCC', fontWeight:'normal'},100);
	});
	
	
	$('#promotionsWrapper').hover(function(){
		$('#bannersWrapper').stop().animate({height: "140px"},600);
	},function() {
		$('#bannersWrapper').stop().animate({height: "0px"},300);
	});
			
	
	$(".bannersCarousel").jCarouselLite({
		visible: 3,
		circular: true,
		btnNext: ".bnr_next",
		btnPrev: ".bnr_prev"
	});
	
});

