//common jquery / javascript that needs to be used and accessible on all pages of the website.
	jQuery(document).ready(function() {
		jQuery('#specials').click(function() {
			//window.location="specials.php";
			Shadowbox.open({
				content:    'specials.php',
				player:     "iframe",
				title:      "Specials",
				height:     450,
				width:      550
			});
		});

	});

