function changePicture(el, imgs)
{
var img = imgs.shift();
imgs.push(img);
if (el.find('img').length == 0)
{
el.append($('
', { 'src' : img }));
img = imgs.shift();
imgs.push(img);
}
el.delay(5000).fadeOut('slow', function(e) {
el.html('');
el.append($('
', { 'src' : img }));
}).fadeIn('slow', function(e) {
changePicture(el, imgs);
});
}
$(function() {
var pictures = [ '/images/moonlight/slideshow/intro_me_1.jpg', '/images/moonlight/slideshow/intro_me_2.jpg', '/images/moonlight/slideshow/intro_me_3.jpg', '/images/moonlight/slideshow/intro_me_4.jpg', '/images/moonlight/slideshow/intro_me_5.jpg' ];
var $slideshow = $('div#slideshow');
changePicture($slideshow, pictures);
});