$(document).ready(function() {
$('.next').hover(
      function () {
        $(this).addClass('over_next');
      },
      function () {
        $(this).removeClass('over_next');
      }
    );
$('.prev').hover(
      function () {
        $(this).addClass('over_prev');
      },
      function () {
        $(this).removeClass('over_prev');
      }
    );
$("#slide").easySlider({
		continuous: true
	});
$('#slide ul li').each(function(i){
		$(this).append($('<span class="caption">' + $(this).find("img").attr("alt") + '</span>'))
		}
	)
});