function slideShow() {
if ( $("#slideShow").length > 0 ) {
	$('#slideShow').css({"height":"200px"});	
	$('#main').css({"margin-top":"0"});
	$('#slideShow img').css({opacity: 0.0});
	$('#slideShow img:first').css({opacity: 1.0});
	setInterval('gallery()',8000);
}
}

function gallery() {
	var current = ($('#slideShow img.show')?  $('#slideShow img.show') : $('#slideShow img:first'));
	var next = ((current.next().length) ? ((current.next().hasClass('caption'))? $('#slideShow img:first') :current.next()) : $('#slideShow img:first'));	
	next.css({opacity: 0.0})
	.addClass('show')
	.animate({opacity: 1.0}, 5000);
	current.animate({opacity: 0.0}, 2000)
	.removeClass('show');
}
