function retcon(html, i){
	document.getElementById('country').innerHTML = html;
	document.getElementById('cid').value = i;
}




	function msh(id, c, sid){
		if (document.getElementById('menu-sub-'+sid).style.display == 'block') {
			id.className = 'left-menu mnbg'+c+'';
			id.notuse = false;
			document.getElementById('menu-sub-'+sid).style.display = 'none';
			document.getElementById('menu-subp-'+sid).style.display = 'none';
		} else {
			id.className = 'left-menu hovbg msmall';
			id.notuse = true;
			document.getElementById('menu-sub-'+sid).style.display = 'block';
			document.getElementById('menu-subp-'+sid).style.display = 'block';
		}
	}
	function mhover(id){
		if (id.notuse != true) id.className = 'left-menu hovbg';
	}
	function munhover(id, c){
		if (id.notuse != true) id.className = 'left-menu mnbg'+c+'';
	}

function cartwupdate(id){
	document.getElementById("cart").innerHTML = '<span style="color: green;">Обновление корзины ... </span>';
	document.getElementById(id).src = '/images/loading.gif';
}
function cartupdate(id){
	$.get("/ajaxcart.jsp", { uid: Math.random() }, function(data){ document.getElementById("cart").innerHTML = data;document.getElementById(id).src = '/images/cok.jpg';});
}

