var urls=new Array();
urls[0]="";
urls[1]="ofertas_productos.html";
urls[2]="grandes_ofertas.html";
urls[3]="ofertas_outlet.html";
urls[4]="encuentranos.html";
urls[5]="servicio_programa_pso.html";
urls[6]="comprueba_test.html";
urls[7]="reserva.html";
urls[8]="soluciones_audifonos_tipos.html";
urls[9]="soluciones_accesorios_tv.html";
urls[10]="soluciones_accesorios_hogar.html";
urls[11]="soluciones_accesorios_telefono.html";
urls[12]="soluciones_accesorios_despertador.html";
urls[13]="conocenos_franquicias.html";

$(document).ready(function() {
	$('#combo_nav').change(function() {
		if ($(this).val()!=0){
			if ($(this).val()==3){
				window.open ("http://outletdeaudifonos.com/","mywindow"); 
			} else {
				var url=urls[parseInt($(this).val())];
				window.location=url;
			}
		}
	});
	$("a[title='Favoritos']").click(function(e){
		e.preventDefault(); // this will prevent the anchor tag from going the user off to the link
		var bookmarkUrl = this.href;
		var bookmarkTitle = this.title;
	 	
	 	if (window.sidebar) { // For Mozilla Firefox Bookmark
			window.sidebar.addPanel(bookmarkTitle, bookmarkUrl,"");
		} else if (document.all) { // For IE Favorite
			window.external.AddFavorite( bookmarkUrl, bookmarkTitle);
		} else if(window.opera && window.print){
			alert('Pulsa ctrl+D (Command+D para macs) para a\u00f1adir esta p\u00e1gina a favoritos');
		} else if(window.opera) { // For Opera Browsers
			$("a[title='Favoritos']").attr("href",bookmarkUrl);
			$("a[title='Favoritos']").attr("title",bookmarkTitle);
			$("a[title='Favoritos']").attr("rel","sidebar");
		} else if(window.chrome){
			alert('Pulsa ctrl+D (Command+D para macs) para a\u00f1adir esta p\u00e1gina a favoritos');
		} else { // for other browsers which does not support
			 alert('Tu navegador no soporta esta acci\u00f3n. Debes hacerlo manualmente.');
			 return false;
		}
	});
});
