/*

	Zach Dowd
	http://www.zachdowd.co.uk/

*/

$(document).bind("ready", function(){
								   
	$('img[alt=Bath]').hover(function(){
		$(this).attr("src", "/images/the-place-not-the-tub.png");
	}, function(){
		$(this).attr("src", "/images/bath.png");
	});
	
	$('img[alt=Systemagic]').hover(function(){
		$(this).attr("src", "/images/systemagic-with-one-m-not-two.png");
	}, function(){
		$(this).attr("src", "/images/systemagic.png");
	});
	
	setInterval(function(){
		if($("img.cursor").css("display") == "none"){
			$("img.cursor").fadeIn(0);
		}else{
			$("img.cursor").fadeOut(0);
		}
	}, 1000);
	
});
