function hoverBar(id){
	document.getElementById(id).style.background="url('wp-content/themes/ffmag/images/mbhover.png')";
}
function outBar(id){	
document.getElementById(id).style.background="none";
if(id=="Register")
{
document.getElementById(id).setAttribute("style", "-moz-border-radius-topright:5px;-webkit-border-top-right-radius:5px;-o-border-radius-topright:5px;-moz-border-radius-bottomright:5px;-webkit-border-bottom-right-radius:5px;-o-border-radius-bottomright:5px;width:100px;color:#FFFFFF;font-family:arial,free-sans;text-align:center")
}
}

function searchFm(){
	if(document.getElementById("searchForm").style.display=="none"){
		document.getElementById("searchForm").style.display="block";	
	}else{
		document.getElementById("searchForm").style.display="none";
	}
}