function cycleImages(){
					var current = $("#fc_slideshow img.active");
					if(current.lenght == 0) current = $("#fc_slideshow img:last");
					
					current.fadeOut('normal').removeClass('active');
					
					var next = current.next();
					if(next.length == 0) next=$("#fc_slideshow img:first");
					next.fadeIn('normal');
					next.addClass('active');
				}
$(document).ready(function(){
	var cycle =	setInterval("cycleImages()", 3000);

});
