function showFadeCart(id){
	var height = $(document).height(); 
	 
	$("#cart_link_"+id).html("<img src=\"/img/shoporder/checked.png\" border=\"0\">"); 
	$("#cart_link_"+id).removeAttr("onclick");
	$('#bg_layer').css("height", height); 
	$('#bg_layer').show();   
	var id_prefix = $('#id_pref_div').html();
	AjaxRequest.send(null, '/action/shoporder/add_to_cart/', 'Добавление...', true, {'product_id':id, 'id_prefix':id_prefix});
	return false;
}
function hideFadeCart() {
	location.reload();
	return false;
} 

function currency_switch(id){ 
	$("span[id^='currency']").removeClass('currency_switcher_on').addClass('currency_switcher_off'); 
	$("#currency_"+id).removeClass('currency_switcher_off').addClass('currency_switcher_on'); 
	
	$("span[id^='prodprice']").hide();
	$("span[id^='prodprice_"+id+"']").show(); 
	AjaxRequest.send(null, '/action/shoporder/currency_switch/', 'Подождите...', true, {'id':id});
}
