// JavaScript Document

/***********************************************
	ancher hover fade
	Goto PageTop
***********************************************/
$(document).ready(function(){
						   
	$("#page_top a").click(function(){
	    $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');  
	     return false;  
	});
	
	
	$(".about a").click(function(){
	    $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');  
	     return false;  
	});


	$(".meal a").click(function(){
	    $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');  
	     return false;  
	});


	$(".room a").click(function(){
	    $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');  
	     return false;  
	});


	$(".map a").click(function(){
	    $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');  
	     return false;  
	});
	

	$(".charge a").click(function(){
	    $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');  
	     return false;  
	});

	$(".contact a").click(function(){
	    $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');  
	     return false;  
	});

});



