$(document).ready( function () {

	$("div#header img").hover( function () {
		$(this).attr("src", "images/logo_hover.png");
	}, function () {
		$(this).attr("src", "images/logo.png");
	});
	
	$("div.item").hover( function () {
		$(this).find("p").stop(true, true).fadeIn("fast");
	}, function () {
		$(this).find("p").stop(true, true).fadeOut("fast");
	});

});

