jQuery(document).ready(function($){
	if ($("#slideshow").length) {
		images = new Array();
		curimg = 0;
		$("#slideshow a").each(function(i){
			images[i] = $(this).attr("href");
			$(this).parents("li").remove();
		});
		$("<img src='" + images[curimg] + "' />").load(function(){
			nextImg();
		});
	}
});

//slideshow function
function nextImg() {
	if (curimg >= images.length) {
		curimg = 0;
	}
	jQuery("#slideshow li").addClass("lastimg");
	var newimg = "<img src='" + images[curimg] + "' />";
	jQuery(newimg).load(function(){
		jQuery("<li>" + newimg + "</li>").appendTo("#slideshow").hide().fadeIn("slow",function(){
			jQuery(".lastimg").remove();
			curimg++;
			setTimeout("nextImg()",3000);
		});
	});
}

