function reset_cart() {
	var infomum = document.getElementById('buyfxmum');
	if (infomum != null) {
		infomum.style.marginBottom = '6px';
	}
	
	var info = document.getElementById('buyfx');
	if (info != null) {
		info.style.visibility = 'hidden';
	}
	
	var cart = document.getElementById('mini_cart');
	if (cart == null) cart = document.getElementById('mini_cart_new');
	cart.style.borderColor = '#555';
}
	
function highlight_cart() {
	var infomum = document.getElementById('buyfxmum');
	if (infomum != null) {
		infomum.style.marginBottom = '25px';
	}

	var info = document.getElementById('buyfx');
	if (info != null) {
		info.style.visibility = 'visible';
	}
	var cart = document.getElementById('mini_cart');
	if (cart == null) cart = document.getElementById('mini_cart_new');
	cart.style.borderColor = '#f70';
}