﻿$(document).ready(function () {
    var nBlocchi = $('#ExhibitionList').find(".blockGroup").length;
    nBlocchi * 900;
    $('#ExhibitionList').css("width", nBlocchi + "px");

    $('#blockRepeater').cycle({
        fx: 'scrollHorz', // transition type, ex: scrollHorz, fade, scrollVert...
        speed: 450, // speed of the transition (any valid fx speed value)
        timeout: 6500, // milliseconds between slide transitions (0 to disable auto advance)
        sync: 1, // true if in/out transitions should occur simultaneously 
        pause: 1	// true to enable "pause on hover"
    });


    //setto link dei DIV ARTIST WORKS
    $('.block').bind('click', function () {
        var findhref = $(this).find("a").attr("href");
        if (findhref != null)
            document.location.href = findhref;
    });

});
