//<script language="JavaScript">
			
if(document.images) {
    homeon = new Image();
    homeon.src = "images/home_on.gif";
    homeoff = new Image();
    homeoff.src = "images/home.gif";
	abouton = new Image();
    abouton.src = "images/about_on.gif";
    aboutoff = new Image();
    aboutoff.src = "images/about.gif";
	serviceson = new Image();
    serviceson.src = "images/services_on.gif";
    servicesoff = new Image();
    servicesoff.src = "images/services.gif";
	contacton = new Image();
    contacton.src = "images/contact_on.gif";
    contactoff = new Image();
    contactoff.src = "images/contact.gif";
	galleryon = new Image();
    galleryon.src = "images/gallery_on.gif";
    galleryoff = new Image();
    galleryoff.src = "images/gallery.gif";
	kudoson = new Image();
    kudoson.src = "images/kudos_on.gif";
    kudosoff = new Image();
    kudosoff.src = "images/kudos.gif";
}
	
function mouseOver(name) {
    document.all[name].src = eval(name + "on.src");
}

function mouseOut(name) {
    document.all[name].src = eval(name + "off.src");
}

function openWin(sLink,w,h) {
	/*if(getCookie("viewedThankyou")!="YES") {*/
	   if (document.all)
	       var xMax = screen.width, yMax = screen.height;
	   else
	       if (document.layers) var xMax = window.outerWidth, yMax = window.outerHeight;
	       else var xMax = 640, yMax=480;
	   var xOffset = (xMax - h)/2, yOffset = (yMax - w)/2;
	newWin = open(sLink,"win","scrollbars=yes,resizable=yes,status=no,height="+w+",width="+h+",toolbar=no,menubar=no,screenX="+xOffset+",screenY="+yOffset+",top="+yOffset+",left="+xOffset+"'"); 
	newWin.focus();
	setCookie();
	/*}*/
}

function getCookie(c_name) {
	if (document.cookie.length>0) {
		c_start=document.cookie.indexOf(c_name + "=");
		
		if (c_start!=-1) { 
			c_start=c_start + c_name.length+1; 
			c_end=document.cookie.indexOf(";",c_start);
			
			if (c_end==-1) c_end=document.cookie.length;
			return unescape(document.cookie.substring(c_start,c_end));
		} 
 	}
	return "";
}

function setCookie() {
	var exdate=new Date();
	exdate.setDate(exdate.getDate()+2);
	document.cookie = "viewedThankyou=YES;expires=" +exdate.toGMTString();
}

function checkCookie() {
	test=getCookie('viewedThankyou');
	alert(test);
}

function switchPhoto(id,state) {
	if(state == "on") {
		document.getElementById("largephoto").innerHTML = "<img src='images/photos/full/" + id + ".gif'>";
		document.getElementById(id).src = "images/photos/" + id + ".gif";
//		document.getElementById("SSE_dinner").src = "images/photos/SSE_dinner_on.gif";
	} else {
		document.getElementById(id).src = "images/photos/" + id + "_on.gif";
		//document.getElementById("largephoto").innerHTML = "";
	}
}
//	</script>