$(document).ready( function(){ carouselStart = Math.floor(Math.random() * $(".carousel li").children().size()); //Creates the jCarouselLite $(function() { $(".carousel").jCarouselLite({ btnPrev: ".arrow_left", btnNext: ".arrow_right", visible: 5, scroll: 1, circular: true, start: carouselStart }); }); //Makes every object in the list clickable $(".carousel li").click(function(){ //alert($(this).attr("title")); jQuery.post("http://www.netstarinc.com/wp-content/themes/default/helpers/testimonials.php", { name: $(this).attr("title") }, function(data){ $(".homepage_mainbody .top").html(data); }); }); //Whatever the carousel randomly starts at, we perform a click on it to load that particular customer. $($(".carousel li")[carouselStart]).click(); });