﻿/* Script file for Emmet
*  Made by Golly 
*/
$(function () {
    //category menu
    $("#woman").click(function () {

        $(this).parent().find(".nav-wrapper").slideDown('fast').show();

        $(this).parent().hover(function () {
        }, function () {
            $(this).parent().find(".nav-wrapper").slideUp('slow');
        });
    });

    $("#man").click(function () {

        $(this).parent().find(".nav-wrapper2").slideDown('fast').show();

        $(this).parent().hover(function () {
        }, function () {
            $(this).parent().find(".nav-wrapper2").slideUp('slow');
        });
    });

    //detail of products and shopping cart
    $("a[rel]").overlay({

        mask: {
            color: '#191718',
            loadSpeed: 200,
            opacity: 0.4
        },

        onBeforeLoad: function () {
            //console.log("funguje");
            var wrap = this.getOverlay().find(".contentWrap");

            wrap.load(this.getTrigger().attr("href"));
            //console.log("funguje");
        }

    }).bind("onBeforeClose", function(e) {
	    $(".error").hide();
    });

        

});
