// JavaScript Document

		// find time offset from GMT to make countdown accurate
		offset = new Date();		
		Arrive = new Date(1174833022000 + (offset.getTimezoneOffset() * 60 * 1000)); // use milliseconds for constructor
		function DateDiff() { 
			
			var td = document.getElementById("scroll"); 
			Today = new Date();
			
			Days = Math.floor((Date.parse(Arrive) - Date.parse(Today)) / 86400000);
			Hours = Math.floor(((Date.parse(Arrive) - Date.parse(Today)) % 86400000) / 3600000);
			Min = Math.floor((((Date.parse(Arrive) - Date.parse(Today)) % 86400000) % 3600000) / 60000);
			Sec = Math.floor(((((Date.parse(Arrive) - Date.parse(Today)) % 86400000) % 3600000) % 60000) / 1000);
			
			if ((Days <= 0) && (Hours <= 0)) {
				td.firstChild.nodeValue = "Sorry if you weren't able to come, but please enjoy some of our pictures."; 
			} else {
				theS = (Days == 1) ? ("") : ("s");
				td.firstChild.nodeValue = Days + " Day" + theS + "   " + Hours + " Hours   " + Min + " Minutes  &  " + Sec + " Seconds"; 
			}
	
			window.setTimeout("DateDiff();",20);
	
		}