$(document).ready(function() {		
	slideShow();
});

function slideShow() {

	$('#gallery img').css({opacity: 0.0});
	$('#gallery img:first').css({opacity: 1.0});
	$('#gallery .caption').css({opacity: 0.5}); /*0.6*/
	$('#gallery .caption').css({width: $('#gallery').find('img').css('width')});
	$('#gallery .content').html($('#gallery img:first').attr('rel'))
	.animate({opacity: 1.0}, 400);/*0.9*/
		setInterval('gallery()',4000);
	 
}

function gallery() {
	var current = ($('#gallery img.show')?  $('#gallery img.show') : $('#gallery img:first'));
	var next = ((current.next().length) ? ((current.next().hasClass('caption'))? $('#gallery img:first') :current.next()) : $('#gallery img:first'));	
	var caption = next.attr('rel');	
	next.css({opacity: 0.0})
	.addClass('show')
	.animate({opacity: 1.0}, 1000);
	current.animate({opacity: 0.0}, 1000)
	.removeClass('show');
	$('#gallery .caption').animate({height: '50px', width: '700px'},500 );
	$('#gallery .content').html(caption);
}
