$(document).ready(function(){    
		// NAVEGACIÓN BOTONES ....
			$('img#boton_i').hover(function() {
				$(this).attr("src","/img/boton_i2.gif");
				$("#infoSeccion").html("Inicio");
			}, function() {
				if (seccion != "inicio") {
					$(this).attr("src","/img/boton_i.gif");
				}
				$("#infoSeccion").html(txt_seccion);
			});
			
			$('img#boton_u').hover(function() {
				$(this).attr("src","/img/boton_u2.gif");
				$("#infoSeccion").html("Universo");
			}, function() {
				if (seccion != "universo") {
					$(this).attr("src","/img/boton_u.gif");
				}
				$("#infoSeccion").html(txt_seccion);
			});
						
			$('img#boton_t').hover(function() {
				$(this).attr("src","/img/boton_t2.gif");
				$("#infoSeccion").html("Tienda");
			}, function() {
				if (seccion != "tienda") {
					$(this).attr("src","/img/boton_t.gif");
				}
				$("#infoSeccion").html(txt_seccion);
			});
			
			$('img#boton_v').hover(function() {
				$(this).attr("src","/img/boton_v2.gif");
				$("#infoSeccion").html("Puntos de Venta");
			}, function() {
				if (seccion != "puntosdeventa") {
					$(this).attr("src","/img/boton_v.gif");
				}
				$("#infoSeccion").html(txt_seccion);

			});
			
			$('img#boton_p').hover(function() {
				$(this).attr("src","/img/boton_p2.gif");
				$("#infoSeccion").html("Prensa");
			}, function() {
				if (seccion != "prensa") {
					$(this).attr("src","/img/boton_p.gif");
				}
				$("#infoSeccion").html(txt_seccion);
			});
			
			
			$('img#boton_ch').hover(function() {
			$(this).attr("src","/img/boton_ch2.gif");
			$("#infoSeccion").html("Chocochic");
			}, function() {
				$(this).attr("src","/img/boton_ch.gif");
				$("#infoSeccion").html(txt_seccion);
			});
						
			$('img#boton_c').hover(function() {
			$(this).attr("src","/img/boton_c2.gif");
			$("#infoSeccion").html("Contacto");
			}, function() {
				if (seccion != "contacto") {
					$(this).attr("src","/img/boton_c.gif");
				}

				$("#infoSeccion").html(txt_seccion);
			});						   
								   
		}); 