$(document).ready(function() {
        $('#productos a, td.producto a, a.producto.pop').click(function(e) {
                e.preventDefault();
                var id = $("#dialog");
                var maskHeight = $(document).height();
                var maskWidth = $(window).width();
                $('#mask').css({'width':maskWidth,'height':maskHeight});
                $('#mask').fadeTo("slow",0.4);	
                var winH = $(window).height();
                var winW = $(window).width();
		var idH = $(id).height();
                //Set the popup window to center
		if ((winH) < (idH)){
                $(id).css('top',  10 );
                $(id).css('left', winW/2-$(id).width()/2);
		} else {
		$(id).css('top',  winH/2-$(id).height()/2);
                $(id).css('left', winW/2-$(id).width()/2);
		}
                var link = $(this).attr("href");
                $(id).fadeIn(500, function(){
                         $(".contenido-pop").load( link ).hide().fadeIn("slow");
                });
        });
        $('.window .cerrar, .cerrar-imagen').click(function (e) {
                e.preventDefault();
                $('#mask, .window').hide();
                $(".contenido-pop").empty();
                window.location.hash = "";
        });		
        $('#mask').click(function () {
                $(this).hide();
                $('.window').hide();
                $(".contenido-pop").empty();
                window.location.hash = "";
        });
        $('#producto a').click(function (e) {
                e.preventDefault();
                     var link = $(this).attr("href");
                     window.location.hash = "";
                     window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-5);
                     $(".contenido-pop").load( link ).hide().fadeIn("slow");
                     });

        $('#portada-hombre a, #portada-mujer a').hide();
	$('#portada-hombre, #portada-mujer').hover(function(){
	$(this).find('a')
	.stop(true, true)
	.fadeIn("fast");
	}, function(){
	$(this).find('a')
	.fadeOut("fast");
	});
	$('.info-producto h3').hide();
	$('#productos li').hover(function(){
	$(this).find('h3')
	.stop(true, true)
	.slideToggle("fast");
	}, function(){
	$(this).find('h3')
	.slideToggle("fast");
	});
        $('#slider-hombre').nivoSlider({
            effect:'boxRandom', 
            slices:15, 
            boxCols: 6, 
            boxRows: 6, 
            animSpeed:700, 
            pauseTime:5000, 
            startSlide:0, 
            directionNav:false, 
            controlNav:false, 
            controlNavThumbs:false 
        });
        $('#slider-mujer').nivoSlider({
            effect:'boxRandom', 
            slices:15, 
            boxCols: 6,
            boxRows: 6, 
            animSpeed:700, 
            pauseTime:5000,
            startSlide:0, 
            directionNav:false,
            controlNav:false 
        });
});
