
function precharg()
 {
 image1 = new Image();
 image1.src = "../images/fond-impression-numerique.png";
 }

 $(document).ready(function (){
	$(document).pngFix();
	$("#containerPrincipal").show(10 , function (){$("#footer").fadeIn(800);});
	$("#containerGallerie").delay(600).fadeIn(3000);
	$("#texteAccueil").delay(600).fadeIn(3000);
	$("#menuSec").show(0,function (){ $("#photo").fadeIn(500);});
	$("#texteContact").delay(600).slideDown(800);

	$('input[type="text"], textarea').focus(function() {  
        $(this).css({background:"#CBCBCB", color:"black", border:"1px black solid"});  
	});
	
	$('input[type="text"], textarea').blur(function() {  
        $(this).css({background:"black", color:"white", border:"1px black solid"});  
    });
    
    $('input[type="submit"]').hover(
    function() {  
        $(this).css({background:"#CBCBCB", color:"black", border:"1px black solid"});  
	},
	function() {  
        $(this).css({background:"black", color:"white", border:"1px white solid"});  
	});
	
	
	
});
