 $(document).ready(function(){ 
       $("#closerestab").css('cursor','pointer');
}); 
$(function(){
	$("#closerestab").bind('click',function(){closeReserve();});
	$("#resbutton").bind('click',function(){showReserve();});
});
function showReserve(){
	$("#registop").animate({
    top: 0
  }, 1000);

}
function closeReserve(){
	$("#registop").animate({
    top: -350
  }, 1000);

}
function popweather(URL) {
	w=300;
	h=250;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=0,resizable=0';
	win = window.open(URL,'book',settings);
}
function popmap(URL) {
	w=1030;
	h=515;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=0,resizable=0';
	win = window.open(URL,'book',settings);
}

