tmp=0;

$(document).ready( function() {
	hauteurFenetre=$(window).height();
	url=new String (document.location);
	if (url.match('galerie'))
		$('body').css('margin-top',((hauteurFenetre-600)/2)+'px');

	
	$('#slider ul li').each(function(i) {
		tmp++;
		var a = $(this);
		if (tmp!=2)
		a.fadeTo(0,0.3);
	});
	equilibrate();
});


