// JavaScript Document
	$(document).ready(function(){ 
		$(document).pngFix();
		setTimeout($('#main_photo img').load(function() {
			$("#main_photo img:hidden:first").fadeIn("slow");
		}),0500) ;	
		$("#banner-01 img").mouseover(function(){
			$("#banner-01 img").attr("src", "images/photo-13.png"); 
		});
		$("#banner-01 img").mouseout(function(){
			$("#banner-01 img").attr("src", "images/logo-01.png"); 
		});
		
		$("h1 img#logo").click(function(){
			window.location.href = 'index.html'; 
		});
		/*--------- Main menu --------*/
		$("li.no").click(function(){
			document.contact.reset()
		});
		$("li#mm-01").click(function(){
			window.location.href = 'index.html'; 
		});
		$("li#mm-02").click(function(){
			window.location.href = 'service.html'; 
		});
		$("li#mm-03").click(function(){
			window.location.href = 'charge.html'; 
		});
		$("li#mm-04").click(function(){
			window.location.href = 'map.html'; 
		});
		$("li#mm-05").click(function(){
			window.location.href = 'contact.html'; 
		});
		/*-------------------------------------*/
	});
function ChkForm(){
	/*
	var mail = $('#06').val();
	if($('#01').val()==""){
		alert("“お名前” をご入力下さい。");  
		$('#01').focus();
		return false;
	}else if($('.02').val()==""){
		alert("“性別” をご入力下さい。"); 
		return false;
	}else  if($('#03').val()==""){
		alert("“年齢” をご入力下さい。");  
		$('#03').focus();
		return false;
	}else  if($('#04').val()==""){
		alert("“ご住所” をご入力下さい。");  
		$('#04').focus();
		return false;
	}else  if($('#05').val()==""){
		alert("“TEL” をご入力下さい。");  
		$('#05').focus();
		return false;
	}else if ((mail == "") || 
		   (mail.indexOf('@') == 1) || 
		   (mail.indexOf('.') == -1)) {
			alert("“E-mail” をご入力下さい。");  
			$('#cus_mail').focus(); 
		return false;
	 }else if($('#07').val()==""){
		alert("“ご相談内容” をご入力下さい。");  
		$('#07').focus();
		return false;
	}else{
		*/
		$("#contect_content").load('send_mail.php?cache='+Math.random()+"&"+$("form#contact").serialize());
	//} 
}