$(document).ready(function(){
	$(".menulink").hover(
	function() {
		$(this).stop().animate({"opacity": "0"}, "slow");
	},
	function() {
		$(this).stop().animate({"opacity": "1"}, "slow");
	});
});

$(document).ready(function(){
	$('.boxgrid.captionfull').hover(
	function() {
		$(".cover", this).stop().animate({top:'80px'},{queue:false,duration:160});
	},
	function() {
		$(".cover", this).stop().animate({top:'130px'},{queue:false,duration:160});
	});
});