$(function(){
    $('.companycate .more1').each(function(){
	   $(this).click(function () {
	   	   $(this).parent().next().siblings('.noDis').hide();
	       if($(this).parent().next().css('display') == 'none')
		   {
               $(this).parent().next().show();
			   $(this).addClass('cateshow');
           } 
		   else
           {
		       $(this).parent().next().hide();
			   $(this).removeClass('cateshow');
		   }
	   });
	});
	$(document).mouseup(function(){
	  if($('.companycate .more1').hasClass('cateshow') == true)
	  {
	    $('.noDis').hide();
	  }
	});
    setInterval('AutoScroll("#scrollDiv")',5000)
});