function loopBanner(id,t,bannertotal)
{
 if(id)
 {
 $('#spbb li').removeClass('ct');
 $('#'+id).addClass('ct');
 bigimagid = id.replace('spb','spc');
 $('#spc-w1 li').hide();
 $('#'+bigimagid).fadeIn();
 }
 else
 {
	  $.each($('#spbb li'), function() {
	   if($(this).hasClass('ct')) {
	   id = $(this).attr('id');
		}
	  });
      now = parseInt(id.replace('spb',''));
	   if((now+1)<=bannertotal)
	   {
	   next = now+1;
	   }
	   else
	   {
	   next = 1;
	   }
	 
	 $('#spbb li').removeClass('ct');
	 $('#spb'+next).addClass('ct');
	 bigimagid = 'spc'+next;
	 $('#spc-w1 li').hide();
	 $('#'+bigimagid).fadeIn();
 }
}
