﻿var timeout    = 500;var closetimer = 0;var menutab = 0;
function menu_open(){stop_timer();menu_close();menutab = $(this).find('ul').css('visibility','visible');}function menu_close(){if(menutab) menutab.css('visibility','hidden');}
function menu_timer(){closetimer = window.setTimeout(menu_close,timeout);}
function stop_timer(){if(closetimer) {  window.clearTimeout(closetimer);closetimer = null;}}
$(document).ready(function(){$("#zz > li ").bind('mouseover',menu_open);$("#zz > li ").bind('mouseout' ,menu_timer);changeHotelRest(0);$("#hotelbutton").click(function(){changeHotelRest(0);});$("#restbutton").click(function(){changeHotelRest(1);});});
function changeHotelRest(changer){$("#hotel_holder").load('hotels.php?type='+changer+'&t='+Math.floor(Math.random()*124578)); if(changer == 0){$("#hotelbutton").attr('class','menubox_active'); $("#restbutton").attr('class','menubox_inactive'); } else { $("#hotelbutton").attr('class','menubox_inactive');$("#restbutton").attr('class','menubox_active'); } }
