$(document).ready (function ()
{
	$('#previous_product,#next_product').live ('click', function ()
	{
		var url_to_load = this.href;
		
		$('#ajax_content #product_title').html ('Chargement...');
		$('#ajax_content #product_picture').html (
			'<p style="text-align: center; margin-top: 130px;">'+
			'<img src="/images/common/loader.gif" alt="Loading..." />'+
			'</p>'
		);
		$('#ajax_content #product_description').html ('');
		$('.moredetails').hide ();
		
		$.ajax (
			{
				url: url_to_load,
				dataType: 'xml',
				success: function (data)
				{
					$('#ajax_content #previous_product, #ajax_content #next_product').attr (
						'href',
						'ajax_previous_next_product.php?id='+$(data).find ('product id').text ()
					);
					$('#ajax_content #product_title').html (
						$(data).find ('product title').text ()
					);
					$('#ajax_content #product_picture').html (
						'<a href="'+$(data).find ('product details url').text ()+'">'+
							'<img src="'+
							$(data).find ('product picture url').text ()+
							'" alt="" />'+
						'</a>'
					);
					$('#ajax_content #product_description').html (
						$(data).find ('product description').text ()
					);
					$('#ajax_content .moredetails').attr (
						'href',
						$(data).find ('product details url').text ()
					).show ();
				}
			}
		);
	
		return false;
	});
});

