//*---------------------------------------------------
// Slideshow
//--------------------------------------------------*/

function displaySlideshow (intPhotos) {
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="400" height="295" id="photos" align="middle">\n');
	document.write('<param name="allowScriptAccess" value="sameDomain" />\n');
	document.write('<param name="movie" value="flash/slideshow.swf" />\n');
	document.write('<param name="loop" value="false" />\n');
	document.write('<param name="menu" value="false" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="bgcolor" value="#ffffff" />\n');
	document.write('<param name="flashvars" value="&totalPhotos=' + intPhotos + '" />\n');
	document.write('<embed src="flash/slideshow.swf" flashvars="&totalPhotos=' + intPhotos + '" loop="false" menu="false" quality="high" bgcolor="#ffffff" width="400" height="295" name="photos" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n');
	document.write('</object>\n');
}




//*---------------------------------------------------
// IE :hover fix
//--------------------------------------------------*/
startList = function() {
	if (document.all && document.getElementById && (navigator.userAgent.toLowerCase().indexOf("opera") < 0)) {
		temp = document.getElementById("footer");
		temp.onmouseover=function() {
			this.className+=" over";
		}
		temp.onmouseout=function() {
			this.className=this.className.replace(" over", "");
		}
	}
}
window.onload=startList;