$(document).ready(function(){
   // alert('JQuery');
/*
	$("header h1 a").mouseover(function(){
		$("#tomo-description").fadeIn(200);
	})
	$("header h1 a").mouseout(function(){
		$("#tomo-description").fadeOut(200);
	})
*/



	$("header h1 a").click(function(){
		$("#tomo-description").fadeToggle(200);
		$("footer").fadeToggle(200);
		$("#navi").fadeToggle(200);
	})
	$("#tomo-description .close").click(function(){
		$("#tomo-description").fadeOut(200);
	})


//	$("#body-bg").fadeOut(1000);

});//End JQUERY
