﻿// JScript File
function slide(idx){

    var ritardo = 5000;

    if (idx == undefined) idx=-1;
    idx++;
    if (jQuery("#rotoreFoto img").length-1<idx) idx=0;

    jQuery("#imgSotto").attr("src",jQuery("#rotoreFoto img").eq(idx).attr("src"));

    jQuery("#imgSopra").fadeOut(800,function(){
        jQuery("#imgSopra").attr("src",jQuery("#imgSotto").attr("src"));
        jQuery("#imgSopra").show();
        window.setTimeout("slide(" + idx + ")",ritardo);
    })
}

$(document).ready(function() {		
	
    slide();
}); 

//jQuery.fn.ramaImgFade = function(idx){
//    var container = idx;
//    var ulSlides = jQuery(this).children("UL");
//    var idImg = 0;
//    
//    function campiaImg(idImg){
//        var imgSopra = jQuery(ulSlides).children(idImg);
//        idImg++;
//        if (jQuery(ulSlides).children(idImg) == undefined) idImg=0;
//    }
//    
//}

