	
    var theImg = 1;
	
    $('#img2').fadeOut(0,function(){}); 
    $('#img3').fadeOut(0); 
    $('#img4').fadeOut(0); 
    $('#img5').fadeOut(0);  
    $('#img6').fadeOut(0); 
    $('#img7').fadeOut(0); 
    $('#img8').fadeOut(0); 
    $('#img9').fadeOut(0); 
    $('#img10').fadeOut(0); 
    $('#img11').fadeOut(0); 
    
	// -----------------------------------------------------------
	
    function fade() {
		
		$('#img' + (theImg)).fadeOut(1000,function(){});
		
		nxt = theImg + 1;
		if(nxt == 12) nxt = 1;
		
        $('#img' + nxt).fadeIn(1000,function(){});
				
        theImg++;
        if(theImg == 12) theImg = 1;
				
		setTimeout("fade()",5000); // 5000
    }
    
	// -----------------------------------------------------------
	    
    window.onload = function() {
		setTimeout("fade()",5000);
    }
    