$(document).ready(function() {
	$('.fiche').click(function() {
		var url = $(this).find('a').attr('href');
		document.location=url;
	});
	
	 var leftIndex='0';;
	 var leftIndexFinalized ='0';

   $('.fiche').hover(function() { 
	 leftIndexFinalized='0';
	 leftIndex=$(this).css('left');
	 for(var i=0;i<leftIndex.length-2;i++) {
   		leftIndexFinalized+=leftIndex.charAt(i)
	 }
	 leftIndexFinalized=Number(leftIndexFinalized);
     $(this).stop().animate({ 'opacity': 1,'height':'148px','width':'110px','top':'-5px','left':(leftIndexFinalized-5)+'px' }, 150);
	 $(this).find('img').stop().animate({'height':'110px','width':'110px'},150);
	 $(this).find('a').stop().animate({'fontSize':'1.4em'},150);
   }, function() { 
      $(this).stop().animate({ 'opacity': 0.8,'height':'138px','width':'100px','top':'0','left':(leftIndexFinalized)+'px'}, 150);
	 $(this).find('img').stop().animate({'height':'100px','width':'100px'},150);
	 $(this).find('a').stop().animate({'fontSize':'1em'},150);
   });
});

