$(document).ready( function() {
    $("#videoSlideShow").jCarouselLite({
        btnNext: "#nextShow",
        btnPrev: "#prevShow",
        start: 0,
        scroll:1,
        visible:1,
		afterEnd: function(a) {
		       id = a.attr('id');
		       $('#'+id+'star').show();
		       $('#'+id+'start').hide();  
		    },
        beforeStart:function(a) {
        	   id = a.attr('id');
		       $('#'+id+'star').hide();
		       $('#'+id+'start').show();  
		    },
		   btnGo:
		    [".1",
		     ".2",
		     ".3",
		     ".4",
		     ".5",
		     ".6",
		     ".7",
		     ".8"]        
    });
});