$(function(){
	   	  $(document).everyTime(8000,'controller',function(){
	   	  	  $('div#mall_list>div:visible').fadeOut('slow',function(){
	   	  	  	 if ($(this).next().is(":hidden")) 
	   	  	  	   {
	   	  	  	   	$(this).next().fadeIn('slow');
	   	  	  	   	
	   	  	  	  }
						
	   	  	  	else $('div#mlist1').fadeIn('slow');
	   	  	  });
                
	   	  });
	   });

