
  var curId;
  
	
$(document).ready(function(){	
	$(".carousel").jCarouselLite({
	    btnNext: ".next",
	    btnPrev: ".prev",
	    visible: 3,
	    scroll:1,
	    auto: 8000,
	    speed: 1200,
	    circular:true,
	    beforeStart: clearBorder,
	    afterEnd: function(i){ 
				showInfo(i[1]);
				curId = i[1];
	 		}			
	 }).ready(function(){
	 		init();
	 });
});

	 function init(){
	 	showInfo('#'+$('.default','.carousel').attr('id'));
		 $('.carousel li').each(function(){
		 		$(this).hover(
		 			function(){ 
		 				$(this).css({cursor:'pointer',borderColor:'#E00000'}); 
		 				showInfo('#'+$(this).attr('id'));
		 				},
		 			function(){ 
		 				$(this).css({cursor:'pointer',borderColor:'#d0d0d0'}); 
		 				showInfo(curId);
		 				}
		 		);
		 		$(this).click(function(){
		 			document.location="bands/bio/id/"+$(this).attr('id');	
		 		});
		 });
	 }
	 function showInfo(id){
		$(id).css({border:'1px solid #E00000'});
		$('#carousel_info').html($('.info',id).html());
	 }
	 function clearBorder(id){
	 		$(id).css({border:'1px solid #d0d0d0'});	
	 }
	 
	


