$(document).ready(function(){

	$('#div_dep').hide();
	
	
	$("a[name='dep']").click(function()
	{								  
		$(this).next().hide();
		$(this).hide();
		$(this).next().next().fadeIn('fast');							  
	});
	
  });
