// BEGIN: jQuery functions on load

jQuery.noConflict();
jQuery(document).ready(function($) {
	// --------------------------------------------------------------------------------------
	// If JavaScript is enabled this adds "j_on" to body tag.
	$("body").addClass("j_on");
	
	var milkCookie = $.cookie("milkStreetCookie");
	$('#gotoBoston').click(function(){$.cookie("milkStreetCookie", "boston", { expires: 365, domain: 'milkstreetcafe.com' }); return true;});
	$('#gotoNewYork').click(function(){ $.cookie("milkStreetCookie", "newyork", { expires: 365, domain: 'milkstreetcafe.com' }); return true;});
	
});
// BEGIN: jQuery functions on load


