$(function(){
/* **********************
START
********************** */

	
	
	
	
	
	
	
	$('.cravatte').hover(function()
	{
		var target = $(this);
		target.animate({height : '+=70px'},150,function(){});
	},function()
	{
		var target = $(this);
		target.animate({height : '-=70px'},150,function(){});
	});
	
	
	$('.bloc').live('click',function(){
										var target = $(this);
										self.setTimeout("self.location.href = '"+target.children("a").attr('href')+"'",0);
										});
	
	$('#more_details').live('click',function(){
		if($(this).attr('title')=='close')
		{
			var nheight='400';
			var state='open';
			var txt = 'Réduire';
			$('#footer_prepend').show();
			$('#footer_prepend').animate({height:nheight-70},1000,function(){});
			
		}
		else
		{
			var nheight='50';
			var state='close';
			var bkg = '#090909';
			var txt = 'Plus de détails';
			$('#footer_prepend').hide();
			$('#footer_prepend').animate({height:0},200,function(){});
		}
		$('#footer').animate({height:nheight},300,function(){
			$('#more_details').html(txt);
			$('#more_details').attr('title',state);
			
		});
	});
	
/* **********************
END
********************** */
});
