/* this is javascript that goes on every page of the site */

$(document).ready(function(){
	// Initialize the New Window Popup JS
	initPopupLinks();
	initDateFields();
	// Initialize the Mini Res App date fields
	//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);
	//});
	
	
});