// JavaScript Document
$(document).ready( function () { 
	$("#topmenu a:contains('Home')").click(function() {
		$("#bannertitle").fadeOut("fast");
		$("#smadhatter").css("background","url(http://www.tophat.co.nz/img/bg_madhatter.gif) repeat-x 0 -115px");
		$("#smadhatter").animate({ 
				paddingBottom: "100px",
        		backgroundPosition: "(0px 0px)"
			}, {
				duration: 500,
				complete: function() { window.location="http://www.tophat.co.nz/"; }
		});
		return false;
	});
});	 