$(document).ready(function()
{
	$('.homemenu.caption').hover(function(){
	$(".cover", this).fadeIn("fast");
}, 
function() 
{
	$(".cover", this).fadeOut("fast");
});
});
