$(document).ready(function() {
    $(function() {
        $('#gal1 a').lightBox();
        $('#gal2 a').lightBox();
        $('#gal3 a').lightBox();
        $('#gal4 a').lightBox();
        $('#gal5 a').lightBox();
        $('#gal6 a').lightBox();
        $('#gal7 a').lightBox();
    });
    
    $('a[href^=#]').click(function(){
		cible=$(this).attr('href');
		if($(cible).length>=1){
			hauteur=$(cible).offset().top;
		}
		else{
		hauteur=$("a[name="+cible.substr(1,cible.length-1)+"]").offset().top;
		}
		$('html,body').animate({scrollTop:hauteur},1500,'easeOutQuint');
		return false;
	});
});
