$(document).ready(function(){
	resize(); 

	if(window.location.search =='?comiteExecutif')
		goToByScroll("comiteExecutif");

	if(window.location.search =='?directeur')
		goToByScroll("directeur");

	if(window.location.search =='?entraineurs')
		goToByScroll("entraineurs");

	if(window.location.search =='?directeurEquipements')
		goToByScroll("directeurEquipements");
	
});

$(window).bind('resize', function() { resize(); }); 

function resize() {
	 $('#container').css({
           "height": ($(window).height() - (258)),
     });

	 $('#container2').css({
            "height": ($(window).height() - (258)),
        });

	 $('#body').css({
            "height": ($(window).height()),
        });
};

function goToByScroll(id){
	$('#container2').animate({scrollTop: $("#"+id).offset().top-190},'slow');
}


