// JavaScript Document
function MM_changeProp(objId,x,theProp,theValue) { //v9.0
  var obj = null; with (document){ if (getElementById)
  obj = getElementById(objId); }
  if (obj){
    if (theValue == true || theValue == false)
      eval("obj.style."+theProp+"="+theValue);
    else eval("obj.style."+theProp+"='"+theValue+"'");
  }
}

// Change image function on mouse over
 function ChangeImg(itemID){ 
  a=itemID
  if (a=="main1")
  { 
 	document.getElementById('heading1').style.backgroundImage = 'url(/portal/page/portal/bmihealthcare/images/menu-bg-hovered.jpg)';
	 document.getElementById('heading2').style.backgroundImage = 'url(/portal/page/portal/bmihealthcare/images/menu-bg.jpg)';
	  document.getElementById('heading3').style.backgroundImage = 'url(/portal/page/portal/bmihealthcare/images/menu-bg.jpg)';
  }
  
  if (a=="main2")
  { 
	 document.getElementById('heading2').style.backgroundImage = 'url(/portal/page/portal/bmihealthcare/images/menu-bg-hovered.jpg)';
	  document.getElementById('heading1').style.backgroundImage = 'url(/portal/page/portal/bmihealthcare/images/menu-bg.jpg)';
	   document.getElementById('heading3').style.backgroundImage = 'url(/portal/page/portal/bmihealthcare/images/menu-bg.jpg)';
  }
  
   if (a=="main3")
  { 
	 document.getElementById('heading3').style.backgroundImage = 'url(/portal/page/portal/bmihealthcare/images/menu-bg-hovered.jpg)';
	  document.getElementById('heading2').style.backgroundImage = 'url(/portal/page/portal/bmihealthcare/images/menu-bg.jpg)';
	   document.getElementById('heading1').style.backgroundImage = 'url(/portal/page/portal/bmihealthcare/images/menu-bg.jpg)';
  }
  
  
  
 }
 //Function change back image
 
  function ChangeBack()
  { 
 /* 	document.getElementById('heading1').style.backgroundImage = 'url(/portal/page/portal/bmihealthcare/images/menu-bg.jpg)';
  	document.getElementById('heading2').style.backgroundImage = 'url(/portal/page/portal/bmihealthcare/images/menu-bg.jpg)';
  	document.getElementById('heading3').style.backgroundImage = 'url(/portal/page/portal/bmihealthcare/images/menu-bg.jpg)';
	*/}

 
 // Show hide function on home page
  function ShowHide(itemID){ 
  a=itemID
  if (a=="main1")
  { 
	  document.getElementById(itemID).style.display = 'inline';
	  document.getElementById('main2').style.display = 'none';
//	  document.getElementById('main3').style.display = 'none';
	//  	  document.getElementById('main4').style.display = 'none';
	 // document.getElementById('main1').style.backgroundColor = '#ddedec'; // For IE
	//  document.getElementById('main1').setAttribute('style', 'backgroundColor:#00928f'); //For Mozilla
	 //============ Title background swap
	//  document.getElementById('heading1').style.backgroundImage = 'url(/portal/page/portal/bmihealthcare/images/menu-bg-hovered.jpg)';
	 //  document.getElementById('heading2').style.backgroundImage = 'url(/portal/page/portal/bmihealthcare/images/menu-bg.jpg)';
	  //  document.getElementById('heading3').style.backgroundImage = 'url(/portal/page/portal/bmihealthcare/images/menu-bg.jpg)';
  }
  else if (a=="main2")
  {
	   document.getElementById(itemID).style.display = 'inline';
	  document.getElementById('main1').style.display = 'none';
	}
  
    else if (a=="main3")
  {
	   document.getElementById(itemID).style.display = 'inline';
       document.getElementById('main4').style.display = 'none';
  }
 
  else  
  {
   	  document.getElementById(itemID).style.display = 'inline';
	  document.getElementById('main3').style.display = 'none';
	
	} // function end
  } 
  
  
  /////////////////////////////////////////////////////////////////////////////////////
  /////
  /////
  /////   Hospital promotions script / Not in use 
  /////
  /////
  ////////////////////////////////////////////////////////////////////////////////////
  
  function HospPromo(itemID){ 
  a=itemID
  if (a=="Promo1")
  { 
	  document.getElementById(itemID).style.display = 'block';
	  document.getElementById('Promo2').style.display = 'none';
	  document.getElementById('Promo3').style.display = 'none';
		  
		document.getElementById('Link1').style.borderTopColor="#00928f";
		document.getElementById('Link2').style.borderTopColor="#fff";
		document.getElementById('Link3').style.borderTopColor="#fff";
		  
		  
	  //document.getElementById('heading1').style.background = '/portal/page/portal/bmihealthcare/images/menu-bg-hovered.jpg';
	  //document.getElementById('Promo1').style.backgroundColor = '#ddedec'; // For IE
	 // document.getElementById('Promo1').setAttribute('style', 'backgroundColor:#ddedec'); //For Mozilla
	  
  }
  else if (a=="Promo2")
  {
		document.getElementById(itemID).style.display = 'block';
		document.getElementById('Promo1').style.display = 'none';
		document.getElementById('Promo3').style.display = 'none';
		
		document.getElementById('Link1').style.borderTopColor="#fff";
		document.getElementById('Link2').style.borderTopColor="#00928f";
		document.getElementById('Link3').style.borderTopColor="#fff";
		
	//	document.getElementById('Promo3').style.display = 'none';
	//	document.getElementById('Promo2').style.backgroundColor = '#ddedec'; // For IE
	//	document.getElementById('Promo2').setAttribute('style', 'backgroundColor:#ddedec'); //For Mozilla
  }
 
  else {
      
	  document.getElementById(itemID).style.display = 'block';
	  document.getElementById('Promo1').style.display = 'none';
	  document.getElementById('Promo2').style.display = 'none';
	 
	  document.getElementById('Link1').style.borderTopColor="#fff";
	  document.getElementById('Link2').style.borderTopColor="#fff";
	  document.getElementById('Link3').style.borderTopColor="#00928f";
//	  document.getElementById('Promo3').style.backgroundColor = '#ddedec'; // For IE
//	  document.getElementById('Promo3').setAttribute('style', 'backgroundColor:#ddedec'); //For Mozilla
	  
	
	  
	  } // function end
  } 


