$(document).ready(function()
{
	//hide the all div except first one
	$('.msg_body:not(:first)').hide();
	//when the anchor is clicked content gets faded
	$("a.linkclass").click(function(event)
	{	
		event.preventDefault();
		var link = $(this).attr("href");
		
		if(link!='')
		{
			$('.msg_body').slideUp("fast", function() {
						fillDiv(link);
						$('#FramedPage').slideDown("slow");
			});
		}
		
		
		
	});
	
	
	
	
	Resultat = ((Actuel/Objectif)/Proportion)+8;
	

	
	

	$('#FramedPage').slideDown("slow");
	fillDiv('#Accueil');

	//Animate the Goal
	$("#goal").animate({ 
			height: Resultat,
			opacity: 1
	}, 5000 ,function()
		{
		$("#Montant").fadeIn("slow");
		$("#Montant").html("&Agrave; ce jour : ");
		$("#MontantAmount").fadeIn("slow");
		$("#MontantAmount").html(Actuel+" $"); 
		});
	
	 
	$("#Objectif").fadeIn("slow");
	$("#ObjectifAmount").fadeIn("slow");
	$("#Objectif").html("Objectif : "); 
	$("#ObjectifAmount").html(Objectif+" $"); 
	 

});