function mkFlash(mv,wd,hg,wm){
document.write('<p>');
document.write('<object type="application/x-shockwave-flash" data="'+mv+'" width="'+wd+'" height="'+hg+'">');
document.write('<param name="movie" value="'+mv+'" />');
document.write('<param name="wmode" value="'+wm+'" />');
document.write('<param name="quality" value="high" />');
document.write('<param name="menu" value="false" />');
document.write('</object>');
document.write('</p>');
}

function IEHoverPseudo(){
var navItems = document.getElementById("primary-nav").getElementsByTagName("li");
for (var i=0; i<navItems.length; i++) {
if(navItems[i].className == "menuparent") {
navItems[i].onmouseover=function() { this.className += " over"; }
navItems[i].onmouseout=function() { this.className = "menuparent"; }
}
}
}
window.onload = IEHoverPseudo;

function exp(obj){ 
if(document.getElementById(''+obj+'').style.display=="block"){ 
document.getElementById(''+obj+'').style.display = "none"; 
} else { 
document.getElementById(''+obj+'').style.display = "block"; 
}}