
$(document).ready(function()
{
    $('a.ico-panier').click(function()
    {
        $.get(this.href, function(data)
        {
            $('#cart').html($('#cart', $('div', $(data))).html());
            $.fancybox({
                'transitionIn'	 : 'elastic',
                'transitionOut'	 : 'elastic',
                'speedIn'		 : 600,
                'speedOut'		 : 200,
                'modal'          : false,
                'width'          : 480,
                'height'         : 225,
                'autoDimensions' : false,
                'centerOnScroll' : true,
                'content'        : $('.p3', $('div', $(data)))
                    .css('width', '460px')
                    .removeClass('t11 p3')
                    .addClass('t12')
                    .prepend($.create('h3', {}, 'Produit ajouté au panier !').addClass('mBottom'))
            });
            $('a#btnret', $('#fancybox-outer')).click(function() { $.fancybox.close(); return false; });
        });
        return false;
    });
});
