function marketing_products_list()
{     $('#wait').show().centering(1,1)
	 $.ajax({
	   type: "POST",
	   url: "index.php",
	   data: {section: "shop", action:"show_marketing_products"},
	   success: function(msg){
	   //	alert(decodeURIComponent(msg));
	    //alert(msg);
	     $("#marketing_products_container").html(msg);
	     $('#wait').hide();
	     hook_links();
	   }
	 });}

function add_marketing_result(product_id)
{	replace_preloader("s_"+product_id, "/images/loader_small.gif");
	$.ajax({
	   type: "POST",
	   url: "index.php",
	   data: {section: "shop", action:"add_marketing_result", id:product_id},
	   success: function(msg){
	     replace_preloader("s_"+product_id, "images/want-btn.gif");
	   }
	 });
	//alert(product_id);}

function add_to_marketing_products(product_id)
{
    $.get("index.php", {section:"shop", action:"add_to_marketing_products", id:product_id});
    alert("OK+"+product_id);}
