$(document).ready(function(){ 			   
	$(".productbutton").live("click", function(){
		// update thumbs page
		var productIDValSplitter 	= (this.id).split("_");
		var productIDVal 			= productIDValSplitter[1];
		$("#notificationsLoader").html('<img src="images/loader.gif">');
		$("#product_holder_basket_loader").html('<img src="images/loader.gif">');
		$("#product_holder_button").html('<img src="images/loader.gif">');
		$.ajax({  
		type: "POST",  
		url: "scripts/functions.php",  
		data: { productID: productIDVal, action: "addToMiniBasket"},  
		success: function(theResponse) {
			$("#basketItemsWrap").animate({ opacity: 0 }, 500, function() {
				$("#basketItemsWrap").before(theResponse).remove();
			});				
			$("#basketItemsWrap").animate({ opacity: 0 }, 500);
			$("#basketItemsWrap").animate({ opacity: 1 }, 500);
			//$("#product_holder_button").animate({ opacity: 0 }, 500);
			//$("#product_holder_button").animate({ opacity: 1 }, 500);
			$("#product_holder_basket_loader").animate({ opacity: 0 }, 500);
			$("#product_holder_basket_loader").animate({ opacity: 1 }, 500);
			$("#notificationsLoader").empty();
			$("#basketItemsWrap").html('<strong>Item added</strong>');
			$("#product_holder_button").html('<strong>Item added</strong>');
		}  
		});  
	});
});
