jQuery.noConflict();

// Use jQuery via jQuery(...)
jQuery(document).ready(function(){
	var myDate = new Date();
	var d = myDate.getDay();
	if (d == 0 && document.domain != "localhost") {
	  jQuery("INPUT.not_sunday").hide();
	  jQuery("INPUT.sunday").show();
	  jQuery("INPUT.sunday").click(function(){
			alert("We are observing the Lord's Day. We welcome your business on Monday through Saturday. Thank you. ")
			return false;
		});		
	}
	jQuery("a[@href$='.pdf']").attr("target", "_blank");
});

