var slideShow = new Array()

slideShow[0] = "images/300x170-identity-3.jpg";
slideShow[1] = "images/300x170-tshirt-4.jpg";
slideShow[2] = "images/300x170-web-2.jpg";
slideShow[3] = "images/300x170-web-15.jpg";
slideShow[4] = "images/300x170-identity-1.jpg";
slideShow[5] = "images/300x170-bc-1.jpg";


$(document).ready(startSlideshow);

function startSlideshow()
{
    processSlideshow("#slideshow", slideShow, 2000, 1000);
}


function processSlideshow(element, imageList, imageDuration, fadeSpeed, current) 
{
	var listSize = imageList.length;
    if (!current || current >= listSize) current = 0;
    if (!imageDuration) imageDuration = 2000;
    if (!fadeSpeed) fadeSpeed = 1000;
    $(element + " img").attr("src", imageList[current]);
    if (current == (listSize - 1)) { $(element).css("background", "transparent url(" + imageList[0] + ") no-repeat");
    } else {
        $(element).css("background", "transparent url(" + imageList[current + 1] + ") no-repeat");
    }
    $(element + " img").animate({ opacity: "1" }, imageDuration).
	      animate({ opacity: "0.01" }, fadeSpeed, function() 
		   { 
		     $(this).css("opacity", "1"); processSlideshow(element, imageList, imageDuration, fadeSpeed, current + 1) 
			});

} 





	
	

