/*
Son of Suckerfish Dropdowns
By Patrick Griffiths and Dan Webb
http://www.htmldog.com/articles/suckerfish/dropdowns/
*/
sfHover = function(){
	var sfEls = document.getElementById("menu").getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++){
		sfEls[i].onmouseover=function() {this.className+=" sfhover";}
		sfEls[i].onmouseout=function() {this.className=this.className.replace(new RegExp(" sfhover\\b"), "");}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

/* end Son of Suckerfish Dropdowns */

function swap(obj,img,info){
	eval(obj).src="../../images/"+img+".gif";
	if(info==null){
		document.images["info"].src="../../images/no_info.gif";
	}else{
		document.images["info"].src="../../images/"+info+".gif";
	}
}

/* eolas workaround */
function printFlashObj(file,w,h){
	document.write('<object type="application/x-shockwave-flash" data="'+file+'" width="'+w+'" height="'+h+'">');
	document.write('<param name="movie" value="'+file+'" />');
	document.write('<param name="menu" value="false" />');
	document.write('<p><a href="http://www.macromedia.com/go/getflash" title="Get Flash">Install flash to view this animation</a></p>');
	document.write('</object>');
}