$(document).ready(function(){
	$('.tooltip').hide();
	$('#detailsPliables').hide();
	$('.literieList > li').mouseover(function(){
		$('.tooltip:hidden').show('slow');
		$('.tooltip').html ($(this).find('img').attr('alt'));
	}); 
	$('#pliable').click(function(){
		$('.literieList').hide('slow');
		$('#detailsPliables').show('slow');
		return false;
	});
});
