$(document).ready(function() {
    
    $("ul.sf-menu").superfish({
        animation: {
            height: 'show'
        },   // slide-down effect without fade-in
        delay:     800               // 1.2 second delay on mouseout
    });
    
    var tcolorbox = $("a[rel='img-big']").size();
    if(tcolorbox > 0) {
        $("a[rel='img-big']").colorbox();
    }
    
    $(".block-imageset").hide();

    $(".block-image").each(function(){
        var gallery = $(this);                    
        gallery.find(".block-imageset a[rel^=imgset]").colorbox({
            current: "Изображение {current} из {total}"
        });
        gallery.find(".link-foto").click(function(e){
            e.preventDefault();
            gallery.find(".block-imageset a[rel^=imgset]").eq(0).click(); 
        });
    });
    
    
    $(".link-product").each(function() {
        var tovars = $(this);
        tovars.find(".show-products").hide();
        tovars.find("a[rel=bb]").click(function() {
            tovars.find(".show-products").slideToggle("fast");
            return false; 
        });
    });
    
    $('a[rel="limg"]').colorbox({
        rel:'nofollow'
    });
    
});


