
$(document).ready(function(){
						   
	var slider = $("#carousel .image .slide");

	$("#carousel .menus li").hover(
		function(){
			$(this).siblings("li").removeClass("hover");
			var li = $(this).attr("class");
			var position = $(".slide li ."+li).position();
			$("#carousel .image .slide").animate({
				top: "-" + position.top + "px" ,
				opacity: 0.2
			},150);
			slider.fadeTo("fast",1);
			if(!$(this).hasClass("hover")) { $(this).addClass("hover"); }
		}
	);	
	
	$("#carousel .menus li").click(function(){
		var href = $(this).find("h2 a").attr("href");
		window.location = href;
		return false;
	});

});
