function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


/*******************Js for hide and show content************************/
function doMenu(item) {
 obj=document.getElementById(item);
 col=document.getElementById("x" + item);
 if (obj.style.display=="none") {
  obj.style.display="block";
  col.innerHTML="<img src='images/minus.gif' width='14'  height='13' border='0' />";
 }
 else {
  obj.style.display="none";
  col.innerHTML="<img src='images/plus.gif' width='14'  height='13' border='0'/>";
 }
}

/******************* end here************************/


/*************************This scrip for media page dropdown*******************/
var lastDiv = "";
function showDiv(divName) {
	if (document.getElementById("business_standard").className = "visibleDiv") {
		
		document.getElementById("business_standard").className = "hiddenDiv";
	}
	// hide last div
	if (lastDiv) {
		document.getElementById(lastDiv).className = "hiddenDiv";
	}
	//if value of the box is not nothing and an object with that name exists, then change the class
	if (divName && document.getElementById(divName)) {
		document.getElementById(divName).className = "visibleDiv";
		lastDiv = divName;
	}
}
/*************************Media script end here*******************/

