$(function() {
  $("#course").utabs();
  $("#news").utabs();

  if (jQuery().marquee) {
    $("#marquee").marquee();
    $("#marquee a").click(function() {
      $("#marquee").marquee("pause");
    });
  }

  $("#customer .nav_control").live("click", function() {
    var this$ = $(this);
    var target$ = $(this).parents("#customer");
    var dir = this$.hasClass("prev") ? "-" : this$.hasClass("next") ? "+" : "";
    $.ajax({
      type: "POST",
      url: UComWebApp.getServerPath() + "Home/GetNextTestimonial",
      dataType: "html",
      // note: testimonialData is serialized in the user control
      data: { currentId: testimonialData.currentPkid, groupKey: testimonialData.groupKey, template: "Testimonials", direction: dir },

      success: function(data) {
        if (data.length > 0) {
          $("#customer").replaceWith(data)
        }
      }
    });
    return false;
  });

});
