function initPageFlip() {
			$("#blLing").hover(function() {
				$("#pageflipLing img").stop()
					.animate({
						width: '200px', 
						height: '170px'
					}, 500); 
				$("#msg_ling").stop()
					.animate({
						width: '200px', 
						height: '170px'
					}, 520); 
					
				} , function() {
				$("#pageflipLing img").stop() 
					.animate({
						width: '31px', 
						height: '31px'
					}, 220);
				$("#msg_ling").stop() //On hover out, go back to original size 50x50
					.animate({
						width: '29px', 
						height: '29px'
					}, 200);
			});
			
			$("#blMusic").hover(function() {
				$("#pageflipMusic img").stop()
					.animate({
						width: '200px', 
						height: '170px'
					}, 500); 
					$("#msg_music").stop()
					.animate({
						width: '200px', 
						height: '170px'
					}, 520); 
				} , function() {
				$("#pageflipMusic img").stop() 
					.animate({
						width: '31px', 
						height: '31px'
					}, 220);
				$("#msg_music").stop() //On hover out, go back to original size 50x50
					.animate({
						width: '29px', 
						height: '29px'
					}, 200);
			});
			
			$("#blClass").hover(function() {
				$("#pageflipClasse img").stop()
					.animate({
						width: '200px', 
						height: '170px'
					}, 500); 
					$("#msg_classe").stop()
					.animate({
						width: '200px', 
						height: '170px'
					}, 520); 
				} , function() {
				$("#pageflipClasse img").stop() 
					.animate({
						width: '31px', 
						height: '31px'
					}, 220);
				$("#msg_classe").stop() //On hover out, go back to original size 50x50
					.animate({
						width: '29px', 
						height: '29px'
					}, 200);
			});
			
			$("#blVse").hover(function() {
				$("#pageflipVse img").stop()
					.animate({
						width: '200px', 
						height: '170px'
					}, 500); 
					$("#msg_vse").stop()
					.animate({
						width: '200px', 
						height: '170px'
					}, 520); 
				} , function() {
				$("#pageflipVse img").stop() 
					.animate({
						width: '31px', 
						height: '31px'
					}, 220);
				$("#msg_vse").stop() //On hover out, go back to original size 50x50
					.animate({
						width: '29px', 
						height: '29px'
					}, 200);
			});
			
			$("#blParis").hover(function() {
				$("#pageflipParis img").stop()
					.animate({
						width: '200px', 
						height: '170px'
					}, 500); 
					$("#msg_paris").stop()
					.animate({
						width: '200px', 
						height: '170px'
					}, 520); 
				} , function() {
				$("#pageflipParis img").stop() 
					.animate({
						width: '31px', 
						height: '31px'
					}, 220);
				$("#msg_paris").stop() //On hover out, go back to original size 50x50
					.animate({
						width: '29px', 
						height: '29px'
					}, 200);
			});
			
			$("#blUs").hover(function() {
				$("#pageflipUs img").stop()
					.animate({
						width: '200px', 
						height: '170px'
					}, 500); 
					$("#msg_us").stop()
					.animate({
						width: '200px', 
						height: '170px'
					}, 520); 
				} , function() {
				$("#pageflipUs img").stop() 
					.animate({
						width: '31px', 
						height: '31px'
					}, 220);
				$("#msg_us").stop() //On hover out, go back to original size 50x50
					.animate({
						width: '29px', 
						height: '29px'
					}, 200);
			});
		
		}
		
	function initAnim(){
	
		$("#blMusic").fadeIn('slow',function(){
		  $(this).animate({'top': '40px','left':'380px'},1200);
		});
		
		$("#blLing").fadeIn('slow',function(){
		  $(this).animate({'top': '40px','left':'50px'},1200);
		});
		
		$("#blClass").fadeIn('slow',function(){
		  $(this).animate({'top': '280px','left':'50px'},1200);
		});
		
		$("#blVse").fadeIn('slow',function(){
		   $(this).animate({'top': '40px','left':'710px'},1200);
		});
		
		$("#blParis").fadeIn('slow',function(){
		  $(this).animate({'top': '280px','left':'380px'},1200);
		});
		
		$("#blUs").fadeIn('slow',function(){
		  $(this).animate({'top': '280px','left':'710px'},1200);
		});
		
	}
	
	function redirectionPortail(index){
		switch (index)
		{
		case 1: 
			url = "../sejours_linguistiques/index.asp";
			break;
		case 2:
		    url = "../vacances_musicales/vacances_musicales_home.asp";
			break;
		case 3:
		    url = "../classes_decouvertes/index.asp";
			break;
		case 4:
		    url = "../voyages_sco_educatifs/index.asp";
			break;
		case 5:
		    url = "../voyages_sco_educatifs_paris/index.asp";
			break;
		case 6: 
			url = "../echanges_fr_us/index.asp";
			break;
		} 
		document.location = url;
	}





