jQuery(document).ready(function(){

	jQuery("#arquivos li").each(function(index,valor){
												  
		if($(this).attr('class') == ''){
			
			$(this).slideUp("fast");
		}
												  
	});
	
		
	jQuery("#arquivos .item-menu").click(function(){
								   
		try{								   
		      $(this).nextAll('li').filter(function(index){
		
		          
		          if($(this).attr("class") == ""){
				       $(this).slideToggle("fast");
			      }else{
					 
					  event.stopPropagation();
					  return true;

				  }
		      });
			  
		}catch(err){
			
			return true;
			
		}

	});

	jQuery("#arquivos .item-menu").eq(0).unbind("click");	
	
	$(window).error(function(){
     return true;
    });
								 
								 
});
