// JavaScript Document

//BOXES

			$(document).ready(function(){
				
				//Partial Sliding (Only show some of background)
				$('.boxgrid.peek').hover(function(){
					$(".cover", this).stop().animate({left:'-340px'},{queue:false,duration:500});
				}, function() {
					$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:500});
				});
				
				//Partial Sliding (Only show some of background)
				$('.boxgrid.peek1').hover(function(){
					$(".cover", this).stop().animate({left:'340px'},{queue:false,duration:500});
				}, function() {
					$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:500});
				});
				
				$('.boxgrid1.slidedown').hover(function(){
					$(".cover", this).stop().animate({top:'-190px'},{queue:false,duration:500});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:500});
				});
				
			});
		
		
		
		//FIN BOXES
		
		
		//fade couleur
		
		$(document).ready(function(){
 
$("img.a").hover(
function() {
$(this).animate({"opacity": "0"}, "slow");
},
function() {
$(this).animate({"opacity": "1"}, "slow");
});
 
});
		
		//fin fade couleur
		
	
		
