/* this is javascript that goes on every page of the site */

$(document).ready(function(){
	// Initialize the New Window Popup JS
	initPopupLinks();
	
	// Initialize the Mini Res App date fields
	// Does the page have a miniresapp?
	if ($('#miniresapp').length > 0) {
	  initDateFields();
	}

	// Initialize the css-popup (wine hour etc)
	$(".csspop").hover(function () {
		$("div.css-popup").fadeIn("slow");	
	},function(){
		$("div.css-popup").fadeOut("slow");
	});
	
	// Bind calendar popup to calendar button
	//$(".btn-calendar").click(function() {
		//calePopUp(200,190);
	//});

    $('#nv-photo').fancybox({
	  type: 'iframe',
	  autoDimensions: false,
	  autoScale: false,
	  scrolling: 'no',
	  width: 750,
	  height: 550
	});
	
});
