function slideSwitch() {
	$('#load').fadeOut('fast', function() {
	var $active = $('#slideShow img.active');	
	var total_imgs = $('#slideShow img').length;	
	//alert(total_imgs);	
	var $next = $active.next().length ? $active.next() : $("#slideShow img:first");
			var desc = $next.attr('title');
		$("#slideDesc").html(desc);
					
	$active.fadeOut('fast');
	$active.removeClass('active');
	$next.addClass('active');
	$next.fadeIn('slow');					
	});
}

