function positionneBigStar(){
	
	// Variables
	var footer_page=$('footer_page');
	var big_star=$('big_star');
	
	// On positionne notre div
	big_star.style.top=(footer_page.offsetTop-big_star.offsetHeight-10)+"px";
	
}