﻿/************************************************/
/* Copyright: Ermal Cacani http://www.cacani.eu */
/************************************************/

function slideShow(speed) {
	jQuery('ul.slideshow').append('<li id="slideshow-caption" class="caption"><div class="slideshow-caption-container"><h3></h3><p></p></div></li>');
	jQuery('ul.slideshow li').css({opacity: 0.0});
	jQuery('ul.slideshow li:first').css({opacity: 1.0});
	jQuery('#slideshow-caption p').html(jQuery('ul.slideshow li:first').find('span').html());
	jQuery('#slideshow-caption').css({opacity: 0.7, left:990});
	var timer = setInterval('gallery()',speed);
}

function gallery() {
	var current = (jQuery('ul.slideshow li.show')?  jQuery('ul.slideshow li.show') : jQuery('#ul.slideshow li:first'));
	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.css({opacity: 0.0}).addClass('show').animate({opacity: 1.0}, 1000);
	current.animate({opacity: 0.0}, 1000).removeClass('show');
}
