$(document).ready(function(){
	
	// Cufon
	Cufon.replace
	('ul.dropdown li a.dir',{hover: true})
	('#buscador label')
	('h1',{hover: true})('h2',{hover: true})('h4',{hover: true})
	('#producto_destacado p',{hover: true})
	('.fila_productos p',{hover: true})
	('#txt_entradilla p',{hover: true})
	('#miniaturas h3',{hover: true})
	('p.precio')
	('p.calcular')
	('p.referencia')
	('#botones ul li a',{hover: true})
	('#botones button',{hover: true})
	('#botones a.exclusividad span',{hover: true})
	('#nav_pasos ul li a',{hover: true})
	('#nav_pasos_botones ul li a',{hover: true})
	('#nav_pasos_botones button',{hover: true})
	('#nav_pasos_botones a.boton_comprar',{hover: true})
	('#boton_guardar button',{hover: true})
	('#volver_boton p a',{hover: true})
	('#volver_boton button',{hover: true})
	('.td_enlaces ul li a',{hover: true})
	('.td_impuestos p')
	('.td_total p')
	('.td_precio ul li a',{hover: true})
	('#datos_facturacion_pago h3')
	('#datos_producto ul li a',{hover: true})
	('#dentro_categoria h3')
	('.pasos_compra li')
	('p.p_editar a',{hover: true})
	('.datos ul li a',{hover: true})
	('#footer ul li a',{hover: true});
	
	// Submenu Superfish
	$(function(){
		jQuery('ul.sf-menu').superfish();
	});
	
	// Tooltip
	$(".tooltip").easyTooltip();
	
	// JQZoom
	$(function() {
		var options =
		$('.ZOOMIMAGE').jqzoom(options);
	});
	
	// JQuery file
	$(function() {
     	$("input.file_es").filestyle({ 
        	image: "../../img/bot-examinar-es.gif",
         	imageheight : 25,
         	imagewidth : 92,
         	width : 136
     });
     	$("input.file_en").filestyle({ 
        	image: "../../img/bot-examinar-en.gif",
         	imageheight : 25,
         	imagewidth : 92,
         	width : 136
     });
     	$("input.file_fr").filestyle({ 
        	image: "../../img/bot-examinar-fr.gif",
         	imageheight : 25,
         	imagewidth : 92,
         	width : 136
     });
	 
	 // Colorbox
	 $(".sobre_lizzura").colorbox({width:"570px", height:"535px", iframe:true});
	 $(".contacto").colorbox({width:"570px", height:"370px", iframe:true});
	 $(".newsletter").colorbox({width:"570px", height:"290px", iframe:true});
	 $(".ayuda").colorbox({width:"570px", height:"535px", iframe:true});
	 $(".envios_devoluciones").colorbox({width:"570px", height:"535px", iframe:true});
	 $(".aviso_legal").colorbox({width:"570px", height:"535px", iframe:true});
	 $(".mapa_web").colorbox({width:"570px", height:"535px", iframe:true});
	 $(".como_medir_perro").colorbox({width:"570px", height:"535px", iframe:true});
	 
	 // Dropdown
	 $("ul.dropdown li").dropdown();
});
});

$.fn.dropdown = function() {

	$(this).hover(function(){
		$(this).addClass("hover");
		$('> .dir',this).addClass("open");
		$('ul:first',this).css('visibility', 'visible');
	},function(){
		$(this).removeClass("hover");
		$('.open',this).removeClass("open");
		$('ul:first',this).css('visibility', 'hidden');
	});

}
