var old=null;

$("document").ready(function()
{
	$('body').append('<div id="tip"></div>');
    $(".tip[title]").tooltip({tip:'#tip',effect:'slide'});
    
	old = $('#firstPlat');
	if (old)
	{
		old.animate({'height':'202px','width':'162px'},50)
	}
	
	$(".plat a").click(function(){
		var id = $(this).attr('id');
		$.get('/ajax/panier.php',{'id':id});
		return false;
	});
	
	$('#dock-home img').hover(	function(){
									if (old)
									{
										old.animate({'height':'94px','width':'75px'},50)
									}
									$(this).animate({'height':'202px','width':'162px'},50)
									
									
								},
								function(){
									old = $(this);
								})
								
});
