// Needed for back browse actions to call document.ready
history.navigationMode = 'compatible';

$(document).ready(function() {
	
	//-------------------------------------------------------
	// Set up scrolling actions
	
	$("a.scroll_to_top").click(function() {$.scrollTo($("body").position().top, 300)});
	$("a.scroll_to_menus").click(function() {$.scrollTo($("#menus").position().top-40, 300)});
	$("a.scroll_to_hours").click(function() {$.scrollTo($("#hours-and-location").position().top+30, 300)});
	$("a.scroll_to_gallery").click(function() {$.scrollTo($("#gallery").position().top+30, 300)});
	$("a.scroll_to_events").click(function() {$.scrollTo($("#events").position().top, 300)});
	$("a.scroll_to_contact").click(function() {$.scrollTo($("#contact-us").position().top, 300)});

});
