(function($) {  
$(document).ready(function() {            
    slideShow();
});
})(jQuery)
function slideShow() {
    $('#slideshow img').css({opacity: 0.0});
    $('#slideshow img:first').css({opacity: 1.0});
    $('#slideshow .caption').css({opacity: 0.5});
    $('#slideshow .caption').css({width: $('#slideshow img').css('width')});
    $('#slideshow .content1').html($('#slideshow img:first').attr('title'))
    .animate({opacity: 1}, 400);
    setInterval('gallery()',4000);  
}

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'));    
    var caption = next.attr('title');    
    next.css({opacity: 0.0})
    .addClass('show')
    .animate({opacity: 1.0}, 1000);

    current.animate({opacity: 0.0}, 1000)
    .removeClass('show');
    
    $('#slideshow .caption').animate({opacity: 0.0}, { queue:false, duration:0 }).animate({height: '1px'}, { queue:true, duration:300 });    
    $('#slideshow .caption').animate({opacity: 0.5},100 ).animate({height: '35px'},500 );
    $('#slideshow .content1').html(caption);  
}
