$(document).ready(function(){
	if ($.cookie('20080521') != "true") {
		$("#headimage").show();
		window.setTimeout('fadeOut()',4000);
	}
});

function fadeOut(){
			$("#headimage").fadeOut(1000);
			$.cookie('20080521', "true");
}
