$(document).ready(function(){
	
	
	// replier les annonces 
	// indiquer le nombre d'annonces
	$('li.type').each(function(){
		$(this).children('h2').append(
			"<span class='small'> : "
			+ $(this).children('ul').children('li').length
			+ " annonce(s)</span>"
		);
		// cacher la suite 
		$(this).children('ul').slideUp();		
		$(this).children('h2').css("cursor","pointer")	
	});

	$('li.type h2').click(function(){
		$(this).siblings('ul').slideToggle();		
		
	});	
	
	$("#portfolio li a").each(function(){
		$(this).attr('rel','gal');
	});
	$("#portfolio li a").fancybox();
		
});

$(window).load(function(){
// ajuster les hauteurs 
	var HEIGHT = Math.max(
		$('#nav').height(),
		$('#content').height()
		);
	$('#content').height(HEIGHT);
	$('#nav').height(HEIGHT);
});


