$(document).ready(function() {
	$("#buy").click(function() {
		$.ajax({
		     type: "POST",
		     url: "/basket/ajax_add/" + $(this).attr('rel'),
    		 success: function(result){
				if(result) {
					self.parent.tb_remove();
	                top.location.href="/view/basket";
				}
		     }
		 });
	});	
	$(".thumb").click(function() {
		$("table td").removeClass('active');
		$(this).parent().addClass('active');
		$.ajax({
		     type: "POST",
		     url: "/attachment/" + $(this).attr('rel'),
     		 success: function(result){
				var attachment = result.split(", ");
				$("#image").replaceWith(
					'<img width="' + attachment[3] + '" height="' + attachment[4] + 
					'" alt="' + attachment[2] + '" id="image" src="/media/filter/max/' + attachment[0] + 
					'/' + attachment[1] + '"/>'
				);
		     }
		 });
	})
});
