function HideContent(d) {

document.getElementById(d).style.display = "none";
}
function ShowContent(d) {

document.getElementById(d).style.display = "block";
}
function overbg(d) {
document.getElementById(d).style.backgroundImage = "url(images/bg_mainmenu-over.gif)"; 
}
function downbg(d) {
document.getElementById(d).style.backgroundImage = "url(images/bg_mainmenu.gif)"; 
}
