$(document).ready(function() {
  	
  	/* Slide header */
  	$('div.cont_bloc > div.sliding').hide();  
  	$('.bt_fam').click(function() {
    	$(this).parents('div.top_bloc').next('div').next('div').children('div.sliding').slideToggle('fast');
    	return false;
 	});
 	
 	/* Slide others categories */
 	/*
 	$('div.sliding a.bt_slide').click(function() {
 		$(this).parents('h3').next('div').toggle();
 		return false;
  	});
  	*/
  	/* Slide others categories */
  	$('div.top_bloc a.bt_aff').click(function() {
    	$(this).parents('div.top_bloc').next('div').children('div').slideToggle('fast');
    	return false;
 	});
  	
});