jQuery(document).ready(function() {
	slideShow(3300);
});
 
function slideShow(speed) {
	jQuery('ul.slideshow li').css({opacity: 0.0});
	jQuery('ul.slideshow li:first').css({opacity: 1.0}).addClass('show');
	var timer = setInterval('gallery()',speed);
	jQuery('ul.slideshow').hover(
	function () {
    clearInterval(timer);  
    }, 
    function () {
    timer = setInterval('gallery()',speed);        
    });
}
 
function gallery(){
	var current = (jQuery('ul.slideshow li.show') ? jQuery('ul.slideshow li.show') : jQuery('#ul.slideshow li:first'));
	if (current.queue('fx').length == 0) {
		var next = ((current.next().length) ? ((current.next().attr('id') == 'slideshow-caption') ? jQuery('ul.slideshow li:first') : current.next()) : jQuery('ul.slideshow li:first'));
		var title = next.find('img').attr('title');
		var desc = next.find('img').attr('alt');
		next.css({
			opacity: 0.0
		}).addClass('show').animate({
			opacity: 1.0
		}, 1000);
		jQuery('#slideshow-caption').slideToggle(300, function(){
			jQuery('#slideshow-caption h3').html(title);
			jQuery('#slideshow-caption p').html(desc);
			jQuery('#slideshow-caption').slideToggle(500);
		});
		current.animate({
			opacity: 0.0
		}, 1000).removeClass('show');
	}
}
