﻿
var _showingUpBrand = false;

$(document).ready(function() {

    //brands
    $("#pg-brandlist img").bind("mouseenter", function() {

        _showingUpBrand = true;

        $("#pg-branddetails").show();
        var toshow = "#" + $(this).attr("rel");
        $(toshow).slideDown(200, function() {
            _showingUpBrand = false;
        });

    });


    $("#pg-brandlist img").bind("mouseleave", function() {

        var tohide = "#" + $(this).attr("rel");
        $(tohide).slideUp(200, function() {

            //nasconde il pannello solo se nessun li è visibile
            var hidepanel = true;
            $("#pg-branddetails li").each(function() {
                if ($(this).css("display") != "none")
                    hidepanel = false;
            });

            if (hidepanel == true)
                $("#pg-branddetails").hide();

        });
    });


    //banners
    $("#pg-viewer-banner-padder").cycle({
        fx: 'fade',
        speed: 1000,
        timeout: 4000
    });

});
