$(document).ready(function(){
	var isFading = "no";
	//$("#backgrounds li").hide();
		
	  var total = $("#backgrounds li").length;
	  var index = 10;
	  var count = Math.floor ( Math.random ( ) * total + 1 );
	  
	  $("#backgrounds li:nth-child("+count+")").delay(500).addClass("first").addClass("visible").fadeIn(1500, function () {
																														 	loop();

																														 });
	//$("#backgrounds li").last().addClass("last");

		function loop(){
			$("#backgrounds").delay(2000).queue(function(next){
				isFading = "no";
				fade();
				next();
});
	
		}; //end loop carosel
		
		
		function fade(){
					isFading = "yes";

					if (count == total) {count = 1;}
					else
						{
						count++;	
						};
					index++;
					
        			$("#backgrounds li:nth-child("+count+")").css('z-index',index).fadeIn(1500, function () {
					
					$("li.visible").hide().removeClass("visible");
					$("#backgrounds li:nth-child("+count+")").addClass("visible");
           			loop();
         			});//fadeIn Complete
			
		};
		
}); //end document ready

