 $("document").ready(function(){

  $("div.carousel_container #buttons #next").click(function(e){
   e.preventDefault();
   $("div.carousel_container ul.carousel li:first").animate({ marginLeft: "-240px" }, 800, 'easeInOutExpo', function(){
    var html = $(this).html();
    var title = $(this).attr("title");
    $(this).remove();
    $("div.carousel_container ul.carousel").append("<li title=" + title + " >" + html + "</li>");
    bind_carousel_rollovers();
   });
  });

  $("div.carousel_container #buttons #prev").click(function(e){
   e.preventDefault();
   var html = $("div.carousel_container ul.carousel li:last").html();
   var title = $("div.carousel_container ul.carousel li:last").attr("title");
   $("div.carousel_container ul.carousel li:last").remove();
   $("div.carousel_container ul.carousel").prepend('<li title="' + title + '" style="margin-left: -240px;">' + html + "</li>");
   $("div.carousel_container ul.carousel li:first").animate({ marginLeft: "0px" }, 800, 'easeOutBack', function(){
    $(this).removeAttr("style");
    bind_carousel_rollovers();
   });
  });

  bind_carousel_rollovers();

 });

 function bind_carousel_rollovers() {
  
  $("div.carousel_container ul.carousel li").unbind("hover").hover(function(){
   $("div.carousel_container div#top h2").html($(this).attr("title"));
  }, function(){
   $("div.carousel_container div#top h2").html("");
  });

 }

