﻿

$(document).ready(function(){


		$(".add2cart_handler").click(function(){
			    var image = $('#'+$(this).attr("rel")).offset();
				var cart  = $('.cpt_shopping_cart_info').offset();
                sizes = getPageSize();

				$('.cpt_maincontent').before('<img src="' + $('#'+$(this).attr("rel")).attr('src') + '" id="temp" style="position: absolute; z-index:1000; top: ' + image.top + 'px; left: ' + image.left + 'px;" />');
	
				params = {
					top : cart.top + 'px',
					left : cart.left + 'px',
					opacity : 0.0,
					width : $('.cpt_shopping_cart_info').width()+'px',  
					heigth : $('.cpt_shopping_cart_info').height()+'px'
				};		
	
				$('#temp').animate(params, 3000, false, function () {
				$('#temp').remove();
				});
				
                __alert('Товар добавлен в корзину');
				
				
		})

	})
