var imageslidertotal = $('#imagesliderlist').children().length;
var imagesliderwidth = imageslidertotal * 205;
var queue;
$('#imagesliderlist').width( imagesliderwidth );


function imageslideleft()
{
$('#imagesliderlist').animate({marginLeft: '-185px'}, 2000, 'linear', function() {
  $('#imagesliderlist li:last').after($('#imagesliderlist li:first'));
  $('#imagesliderlist').css('marginLeft', '0');
  imageslideleft();
});
}

$(document).ready(function() {

$('#imagesliderlist li').mouseover(function(){
  $('#imagesliderlist').clearQueue();
  $('#imagesliderlist').stop(true);
  
  $(this).find('div.caption').stop(true, true).fadeIn();
});

$('#imagesliderlist li').mouseout(function(){
  $(this).find('div.caption').stop(true, true).fadeOut();
  imageslideleft();
});

imageslideleft();

});
