jQuery(function ($) {
	$('.boxgrid.caption').hover(function(){
		$(".cover", this).stop().animate({left:'0'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({left:'-160px'},{queue:false,duration:160});
	});
	$('.boxgrid.captionr').hover(function(){
		$(".cover", this).stop().animate({right:'0'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({right:'-160px'},{queue:false,duration:160});
	});
	$("#menu ul li").hover(function() {
		$("a",this).animate({ marginTop: "5px" }, 200);
		$("span",this).fadeIn(250).css("display","block").removeClass("h");
	},function() {
		$("a",this).animate({ marginTop: "25px" }, 200);
		$("span",this).addClass("h");
	});
});
