// JavaScript Document
window.onload = function(){
	var minS=240;
	function InitMenu() 
	{
		minS = $('hotel-menu').offsetTop > minS ? $('hotel-menu').offsetTop : minS;
		$('hotel-menu').style.position = "absolute" ;
	}
	InitMenu();
	
	function moveMenu()
	{
		var sc=getScroll().t;
		/**  ����FireFox  **/
		if(sc>(minS+10) )
			$('hotel-menu').style.top=(sc-minS) + "px";
		else
			$('hotel-menu').style.top="0px";
	}
	window.onscroll = moveMenu;
}
function getScroll()  {
     var t, l, w, h;
	 if (document.documentElement && document.documentElement.scrollTop) {
	          t = document.documentElement.scrollTop;
			  l = document.documentElement.scrollLeft;
			  w = document.documentElement.scrollWidth;
			  h = document.documentElement.scrollHeight;
	} else if (document.body) {
		t = document.body.scrollTop;
		l = document.body.scrollLeft;
		w = document.body.scrollWidth;
		h = document.body.scrollHeight; 
	}     
	return { t: t, l: l, w: w, h: h }; 
} 