$(document).ready(function () {
	$('div.buy a').removeAttr('onclick');

	$('div.buy a').click(function () {
		if($(this).attr("href") != '#'){
			//window.location.href = $(this).attr("href");
			return true;
		}
		var product_id = $(this).attr("rel");
		$.ajax({
			type: 'post',
			url: '/ajax_cart.php?add_ajax_product='+product_id,
			dataType: 'html',
			data: '',
			success: function (html) {
				$('#cart_middle').html(html);
			},	
			complete: function () {
				var image = $('#image_'+product_id).position();
				var cart  = $('#cart_middle').position();
				$('#image_'+product_id).before('<img src="' + $('#image_'+product_id).attr('src') + '" id="temp" style="position: absolute; top: ' + image.top + 'px; left: ' + image.left + 'px; z-index:200æ" />');
	
				params = {
					top : cart.top + 'px',
					left : cart.left + 'px',
					opacity : 0.0,
					width : $('#cart_middle').width(),  
					heigth : $('#cart_middle').height()
				};		


				$('#temp').animate(params, 'slow', false, function () {
					$('#temp').remove();
				});		
				
			}			
		});
		$('#buy_button_'+product_id).attr('src', '/images/order.png');
		$(this).removeAttr('onclick');
		$(this).attr("href", '/index.php?shopping_cart=yes');
		return false;
	});			
});
