var reserveHref = '';
$(function() {
var fb_opt = { 'overlayShow': true, 'overlayOpacity': 0.70, 'zoomSpeedIn': 300, 'zoomSpeedOut': 400, 'frameWidth': 480, 'frameHeight': 480 };
	$("a.popup").fancybox(fb_opt);

	
var fb_img = {'overlayShow': true, 'overlayOpacity': 0.70, 'zoomSpeedIn' : 300, 'zoomSpeedOut' : 400};
	$("a.group").fancybox(fb_img);
	
	reserveHref = $(".reserve a").attr("href");

	$(".reserve select, .reserve input").change(function() { setReserveLink(); });
	$(".reserve input").keyup(function() { setReserveLink(); });
});

function setReserveLink() {
  var queryString = '';
  $(".reserve select").each(function(){
    queryString += $(this).attr("name")+"="+$(this).find("option:selected").val()+"&";
  });
  $(".reserve input").each(function(){
    queryString += $(this).attr("name")+"="+$(this).val()+"&";
  });
  $(".reserve a").attr("href", reserveHref + '?' + queryString);
  
}


	

$(document).ready(function(){
	
		$(".sub a").click(function(){
		$(this).blur();
	});
	
	$(".sub li").mouseover(function(){
		$(this).stop().animate({height:'170px'},{queue:false, duration:700})
	});
	
	$(".sub li").mouseout(function(){
		$(this).stop().animate({height:'48px'},{queue:false, duration:700})
	});
	
	
});



