﻿var counter = 0;


function theRotator() {
	setInterval('rotate()',5000);
}

function rotate() {
    //$('div#immagineComunicazione').animate({ opacity: 0.0 }, 1000).animate({ backgroundImage: "url(/images/rotator/" + ((counter++) % 3) + ".jpg)" }, 1000);
    //$('div#immagineComunicazione').css('background-image', "url(/images/rotator/" + ((counter++) % 3) + ".jpg)");
    //$('div#immagineComunicazione').animate({ opacity: 1.0 }, 1000);

    $('div#immagineComunicazione').fadeOut('slow', function () {

        $('div#immagineComunicazione').css({ 'background-image': 'url(/images/rotator/' + ((++counter) % 3) + '.jpg)' });

        $('div#immagineComunicazione').fadeIn('slow');
    });

};


$(document).ready(function(){
    $("a[rel='fotogallery']").colorbox();
    theRotator();
});

