// JavaScript Document

//under manufacter left side
$(function(){
	     var $obj = $('#hot_ranks ul');
		 var len  = $obj.length;
		 var i = 0;
		 $("#next").click(function(){
		      i++;
			  if(i==len){
			    i = 0;
			  }
			  $obj.stop(true,true).hide().eq(i).fadeIn(600);
			  return false;
		 });	
		 $("#previous").click(function(){
		      i--;
			  if(i==-1){
			    i = len-1;
			  }
              $obj.stop(true,true).hide().eq(i).fadeIn(600);
			  return false;
		 });
         

         $('#hot_ranks').hover(function(){
		      if(MyTime){
			     clearInterval(MyTime);
			  }
		 },function(){
              MyTime = setInterval(function(){
				 $("#next").trigger("click");
			  } , 6000);
		 })

		 var MyTime = setInterval(function(){
		    $("#next").trigger("click");
		 } , 6000);
	})


