$(document).ready(function(){
// 15 BOULOTS
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
	$('.grid').hover(function(){
		$(".cover", this).stop().animate({left:'127px',top:'0px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({left:'0px',top:'0px'},{queue:false,duration:150});
	});
//


//archive menu the blogue

	$("li.open a.toggle").live('click',function() {
		$(this).nextAll().slideToggle("slow");
		$(this).parent().removeClass('open');
		$(this).parent().addClass('close');
		return false;
	});
	
	$("li.close a.toggle").live('click',function() {
		$(this).nextAll().slideToggle("slow");
		$(this).parent().removeClass('close');
		$(this).parent().addClass('open');
		return false;
	});
//
});

