document.writeln('<ul id="hybridNav">');
document.writeln('			<li><a href="http://espanol.geappliances.com/enes/heat-pump-hot-water-heater/">Informaci\363n general</a></li>');
document.writeln('			<li><a href="http://espanol.geappliances.com/enes/heat-pump-hot-water-heater/water-heater-rebate.htm">Ahorros, rebajas e incentivos fiscales</a></li>');
document.writeln('			<li><a href="http://espanol.geappliances.com/enes/heat-pump-hot-water-heater/high-efficiency-water-heater-savings.htm">Ahorro de energ\355a</a></li>');
document.writeln('			<li><a href="http://espanol.geappliances.com/enes/heat-pump-hot-water-heater/electric-water-heater-features.htm">Funciones y detalles</a></li>');
document.writeln('			<li><a href="http://espanol.geappliances.com/enes/heat-pump-hot-water-heater/water-heater-installation.htm">Instalaci\363n</a></li>');
document.writeln('			<li><a href="http://espanol.geappliances.com/enes/heat-pump-hot-water-heater/water-heater-faq.htm">Preguntas frecuentes</a></li>');
document.writeln('		</ul>');

document.writeln('		<div class="leftButtons">');
document.writeln('			<a href="http://espanol.geappliances.com/enes/heat-pump-hot-water-heater/water-heater-stores.htm"><img src="http://espanol.geappliances.com/img/geappliances/ES_25029.gif" width="205" height="92" alt="\241Compre hoy! Busque el calentador de agua el\351ctrico GeoSpring con bomba de calor - Comience a comprar" title="\241Compre hoy! Busque el calentador de agua el\351ctrico GeoSpring con bomba de calor - Comience a comprar" /></a><br />');
document.writeln('			<br />');
document.writeln('			<a href="http://espanol.geappliances.com/enes/heat-pump-hot-water-heater/geospring-steam-sweepstakes.htm"><img src="http://espanol.geappliances.com/img/geappliances/ES_25225.gif" width="187" height="94" alt="\277EST\301 QUE HIERVE por sus facturas de energ\355a? Participe en nuestros sorteos" title="\277EST\301 QUE HIERVE por sus facturas de energ\355a? Participe en nuestros sorteos" /></a><br />');
document.writeln('			<br />');
document.writeln('			<a href="http://espanol.geappliances.com/enes/sdproducts/ApplProducts/Dispatcher?REQUEST=SpecPage&Sku=GEH50DNSRSA"><img src="http://espanol.geappliances.com/img/geappliances/ES_25030.gif" width="197" height="92" alt="Especificaciones t\351cnicas - F\341cil reemplazo de calentador de agua el\351ctrico est\341ndar - Especificaciones t\351cnicas y dimensiones" title="Especificaciones t\351cnicas - F\341cil reemplazo de calentador de agua el\351ctrico est\341ndar - Especificaciones t\351cnicas y dimensiones" /></a><br />');
document.writeln('			<br />');
document.writeln('			<img src="http://espanol.geappliances.com/img/geappliances/ES_25031.gif" width="197" height="95" alt="Cont\341ctenos - \277Tiene alguna pregunta sobre el nuevo calentador de agua el\351ctrico con bomba de calor? \241Ll\341menos! 1-888-443-4394" title="Cont\341ctenos - \277Tiene alguna pregunta sobre el nuevo calentador de agua el\351ctrico con bomba de calor? \241Ll\341menos! 1-888-443-4394" /><br />');
document.writeln('			<br />');
document.writeln('			<a href="http://www.geappliances.com/heat-pump-hot-water-heater/ge_hybrid_water_heater_certification.pdf" target="_blank"><img src="http://espanol.geappliances.com/img/geappliances/ES_25071.gif" width="185" height="105" alt="La Declaraci\363n de Certificaci\363n del Cr\351dito Fiscal Federal, certifica que este producto cumple con los requisitos para el cr\351dito fiscal. Descargar ahora." title="La Declaraci\363n de Certificaci\363n del Cr\351dito Fiscal Federal, certifica que este producto cumple con los requisitos para el cr\351dito fiscal. Descargar ahora." /></a><br />');
document.writeln('		</div>');

document.writeln('		<div id="productOfEcomagination"><a href="http://www.ecomagination.com/" target="_blank"><img src="http://espanol.geappliances.com/img/geappliances/ES_25033.gif" width="154" height="40" alt="un producto de ecoimaginaci\363n" title="un producto de ecoimaginaci\363n" /></a></div>');


/***************************************************************************
The "leftNavSelector" function sets a selected item in the left nav for the 
current page (based on the page URL and the left nav link's HREF).

To force an item in the left nav to be set as selected, the corresponding 
A tag must be assigned a unique ID in the left nav include file. Then you 
must pass that ID into the "leftNavSelector" function.

This function should be run in the page immediately following the left nav 
include call.
***************************************************************************/

function leftNavSelector(optionalID) {
try {
	pageURL = document.location.href;
	// test for Teamsite URL
	workareaCheck = pageURL.indexOf("\301REA DE TRABAJO/");

	// determine URL path (testing for Teamsite, as well)
	if(workareaCheck != -1) {
		pagePath = pageURL.split("\301REA DE TRABAJO/")[1];
		pagePath = pagePath.substr(pagePath.indexOf("/"));
	} else {
		pagePath = location.pathname;
	}
	
	//strip 'index' file reference from URL (for comparison purposes)
	if(pagePath.indexOf("/index.") >= 0) { pagePath = pagePath.substring( 0,pagePath.indexOf("/index.")+1 ); }
	
	//strip anchors from URL (for comparison purposes)
	if(pagePath.indexOf("#") >= 0) { pagePath = pagePath.substring( 0,pagePath.indexOf("#") ); }
	
	if(!optionalID || !document.getElementById(optionalID)) {
	
		var navArray = document.getElementById("hybridNav").getElementsByTagName("a");
		// cycle through nav items looking for one with HREF that matches the page URL
		for(i=0;i<navArray.length;i++) {
			
			var testHref = navArray[i].pathname;
			if(testHref.indexOf("/") != 0) { testHref = "/" + testHref; } // IE doesn't include beginning slash
			
			//strip 'index' file reference from link URLs (for comparison purposes)
			if(testHref.indexOf("/index.") >= 0) { testHref = testHref.substring( 0,testHref.indexOf("/index.")+1 ); }
			
			if(pagePath == testHref) {
				navArray[i].className += " seleccionado";
				break;
			}// if
		} // for
		
	} else { document.getElementById(optionalID).className += " seleccionado"; }
	
} catch(err) {} // try-catch
} // function