function redimension()
{
	$('table#tableauContent').attr('height', $(window).height());
}

$(document).ready(function() { 
	redimension();
	$(window).resize(function() {
		redimension();
	});

	$('#listeTapis').Fisheye(
		{
			maxWidth: 50,
			items: 'a',
			itemsText: 'span',
			container: '.dock',
			itemWidth: 30,
			proximity: 80,
			alignment : 'center',
			valign: 'bottom',
			halign : 'center'
		}
	)
		$('h1.image').each
		(
			function(i)
			{
				titre = $(this).text();
				$(this).html('<img src="titre/Texte.php?size=25&text='+ titre +'" alt="'+ titre +'" title="'+ titre +'" />');
			}
		);
	
});
