document.write(' <div style="position:absolute; left:0; top:99; width:100%; height:200; z-index:1; visibility: hidden;" id="serviciosMedicosLay"> ');
document.write('   <table width="775" height="200" border="0" align="center" cellpadding="0" cellspacing="0"> ');
document.write('     <tr> ');
document.write('       <td width="185"><img src="images/pix.gif" width="185" height="200" galleryimg="no" onMouseOver="javascript:menuServicios();"></td> ');
document.write('       <td  width="140" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0"> ');
document.write('         <tr> ');
document.write('           <td width="70" bgcolor="#7F99B4"><img src="images/pix.gif" width="70" height="5"></td> ');
document.write('           <td><img src="images/pix.gif" width="70" height="5"></td> ');
document.write('         </tr> ');
document.write('       </table> ');
document.write(' 		  <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="140" height="182"> ');
document.write(' 		  <param name="movie" value="swf/menu_servicios.swf"> ');
document.write(' 		  <param name="quality" value="high"> ');
document.write(' 		  <embed src="swf/menu_servicios.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="140" height="182"></embed> ');
document.write(' 		</object> ');
document.write('         <img src="images/pix.gif" width="100%" height="10" galleryimg="no" onMouseOver="javascript:menuServicios();" ></td> ');
document.write('       <td width="396"><img src="images/pix.gif" width="450" height="200" galleryimg="no" onMouseOver="javascript:menuServicios();" ></td> ');
document.write('     </tr> ');
document.write('   </table> ');
document.write(' </div> ');

//------------------------------------------------------------------------
function menuServicios(){
	
	//Recupera el estado del menu
	var estado = document.getElementById("serviciosMedicosLay").style.visibility;
	
	//Cambia
	if ( estado == "hidden" ){
		document.getElementById("serviciosMedicosLay").style.visibility = "visible";
	} else if ( estado == "visible" ){
		document.getElementById("serviciosMedicosLay").style.visibility = "hidden";
	}
}
//------------------------------------------------------------------------