//javascript
function showmenu() {
	document.getElementById('dropdown').style.visibility = "visible";
	document.getElementById('how_we_help').style.background = "#fff";
	document.getElementById('how_we_help').style.color = "#2D8650";
	document.getElementById('how_we_help').style.padding="5px 14px";
	document.getElementById('how_we_help').style.border="1px solid #2D8650";
}
function hidemenu() {
	document.getElementById('dropdown').style.visibility = "hidden";
	document.getElementById('how_we_help').style.background = "#2D8650";
	document.getElementById('how_we_help').style.color = "#fff";
	document.getElementById('how_we_help').style.padding="6px 15px";
	document.getElementById('how_we_help').style.border="none";

}
function over(name){
	window.document.images[name].src =  "images/" + name + "_on.gif";
}
function out(name){
	window.document.images[name].src =  "images/" + name + ".gif";
}
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}