function addToFavourite(product_id)
{
	$.ajax({
		type: "POST",
		url: "/cart/",
		data: {action: "add_product", productID: product_id},
		success: function(response){window.location.href="/cart/";},
		error: function(response){alert("Произошла ошибка!");},
		dataType: "text"
	});
}

function delFromFavourite(product_id)
{
	
}

function parseResponse(response)
{
	alert("Успешно добавлено в избранное");
}

$(document).ready(function()
{
	var preloader = new Array();
	preloader[0] = new Image();
	preloader[0].src = "/images/buttons/black-left.png";
	preloader[1] = new Image();
	preloader[1].src = "/images/buttons/black-right.png";
});
