
$(document).ready(function(){ 


$("#cart_button").click(function() {


	var productX 		= $(".image_box").offset().left;
	var productY 		= $(".image_box").offset().top;


	var basketX 		= $("#gm_box_pos_20").offset().left;
	var basketY 		= $("#gm_box_pos_20").offset().top;


	var gotoX 			= basketX - productX;
	var gotoY 			= basketY - productY;

	var newImageWidth 	= $(".image_box").width() / 3;
	var newImageHeight	= $(".image_box").height() / 3;

	$(".image_box a img")
	.clone()
	.prependTo(".image_box")
	.css({'position' : 'absolute'})
	.animate({opacity: 0.6}, 100 )
	.animate({opacity: 0.2, marginLeft: gotoX, marginTop: gotoY, width: newImageWidth, height: newImageHeight}, 600, function() {
																																																																												$(this).remove();
 

	});

});
});
