			var date = new Date();
			var utcday = date.getUTCDay();
			var day = date.getDate();
			var utcmonth = date.getUTCMonth();
			var year = date.getFullYear();
			var days = Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
			var months = Array("January","Feburary","March","April","May","June","July","August","September","October","November","December");
			var month = months[utcmonth];
			var dayname = days[utcday];
			$(document).ready(function() {
				$("a.lightbox").fancybox({titlePosition: 'inside'});
				jQuery.fn.exists = function(){return jQuery(this).length>0;}
				if($("#photo1link > img").exists()) {
					var img_url = $("#photo1link > img").attr("src");
					var bigphoto = img_url.replace("_thumb","");
					$("#photo1link").attr("href", bigphoto);
				}
				$("#searchbox").focus(function() {
					if( this.value == this.defaultValue ) {
						this.value = "";
					}
				}).blur(function() {
					if( !this.value.length ) {
						this.value = this.defaultValue;
					}
				});
				$('td').removeAttr("onmouseover");
				$('td').removeAttr("onmouseout");
				// Obligitory Dropdown Menu Code //
				if($.support.boxModel == true) {
					$(".dropdown").mouseenter(function() {
						$(".dropdown[style]").removeAttr("style");
						$(this).css("background-image","url(http://www.itemlive.com/art/bg-over.jpg)")
						$("#subBar div:visible").slideUp(100);
						var btn_txt = $(this).text();
						if(btn_txt == "Contact Us") {
							var droppy = "#Contact";
						} else {
							var droppy = "#" + btn_txt;
						}
						$(droppy).slideDown(100);
					});
					$("#navigation > div:not(.dropdown), .closeDrop").mouseenter(function () {
						$("#subBar div:visible").slideUp(100);
						$('.dropdown[style]').removeAttr("style");
					});
					$("#subBar > div, .container").mouseleave(function(){
						$("#subBar div:visible").slideUp(100);
						$('.dropdown[style]').removeAttr("style")
					});
				}
			});

