$(document).ready(function(){ 
			
			$("#toTop").hide();
			$('#photos-cv').innerfade({
						annimationtype:'slide',
						speed: 2500,
						timeout: 2500,
						type: 'sequence',
						containerheight: '95px'}
			);
			
			$('#toTop').click(function(){
				$('html, body').animate({scrollTop:0}, 'slow');
			});
			
			$('#puceStage').mouseover(function(){
				$("#infoStage").fadeIn(300);
			});
			
			$('#puceStage').mouseout(function(){
				$("#infoStage").fadeOut(300);
			});	

		   $("#btnContactForm").click(function() {
			   $.ajax({
				   url: "send.php",
				   type: "POST",
				   data: ({ nom:$("#nom").val() , pgp:$("#pgp").val() , email:$("#email").val(), objet:$("#objet").val() ,site:$("#site").val() ,message:$("#message").val(), action:"envoi" }),
				   cache:false,		   
				   success:function(html) {
				 	$("#mainContentContact").fadeOut(200, function() {
						$("#mainContentContact").empty();
						$("#mainContentContact").append(html);
						$("#mainContentContact").fadeIn(500);
															
					});
				   },
				   error:function(XMLHttpRequest, textStatus, errorThrown) {
				   }
				   
				});
			return false;
			});
			
		});
