$(document).ready(function() {
	
	$('a[rel$="external"]').click(function(){
		window.open(this.href);
        return false;
	});
	
	$("ul#menuCategorias li a").mouseover(function(){
	  $('#indexIzquierda').removeClass();
      $('#indexIzquierda').addClass($(this).attr("rel"));
    }).mouseout(function(){
      $('#indexIzquierda').removeClass($(this).attr("rel"));
	  if ($("#indexIzquierda").attr("class") == '') {
		$('#indexIzquierda').addClass("index3");  
	  }
    });
	$("#contenedorOfertas a").enlacesExternos({
	   mostrarIcono: false,
	   modoImagen: false,
	   rutaIcono: "/img/icons/icon_external.gif",
	   mostrarTitle: true,
	   title: "Este enlace se abrirá en una ventana nueva",
	   abrirVentana: true
	});
});
