
$(document).ready(function(){
	
	
	slideshow();
	
	
})//end of ready function



function slideshow(){
	
	//alert("startshow")
		
	var current = $('#slideshowHolder .show');
	var next = current.next().length ? current.next() : current.parent().children(':first');
	
	current.fadeOut(2000).removeClass('show');
	next.fadeIn(2000).addClass('show');
	
	
	setTimeout(slideshow, 6000);
	
}
