// JavaScript Document	



$(document).ready(intro);

function intro() {
	 $(".tempon").show();
	 $(".encart").slideDown(1000,ouvrevignette);
	 $(".tempon").hide(1000);
	 $(".encart[a]").hover(survoleencart,sortieencart);
	 $(".encart[a]").click(clickencart);
	 $("#bandeau/h1").click(function(event){
	self.location.href="index.php"
									 });
}

function survoleencart(event){
	$("."+this.id).animate({marginTop: -30,marginBottom: -100}, 200);
}

function sortieencart(event){
	$("."+this.id).animate({marginTop: -50,marginBottom: -80}, 200);
}

function ouvrevignette(event){
	$("."+this.id).slideDown(300);
}


function clickencart(event){
	self.location.href=$(".plus/a",this).attr("href")
}