function changeTopMenuAndRightMenuInterface(cid)
{
	var old_cid = document.getElementById("st_current_top_menu_id_value").value;
	
	jQuery(document).ready(function(){
		    jQuery("#st_top_menu_item_container_" + cid).addClass("st_top_menu_item_container_active");
		    jQuery("#st_top_menu_item_container_" + cid).removeClass("st_top_menu_item_container");
		    
		    jQuery("#st_top_menu_item_container_" + old_cid).addClass("st_top_menu_item_container");
		    jQuery("#st_top_menu_item_container_" + old_cid).removeClass("st_top_menu_item_container_active");
		});
	
	document.getElementById("st_current_top_menu_id_value").value = cid;
	
	var loc = window.location + "";
	var id_loc = loc.search("id=");
	var lang_loc = loc.search("&lang=");
	var new_loc = loc;
	
	if(id_loc != -1)
	{
		var id_length = lang_loc - id_loc - 3;
		var start = id_loc + 3;
		var end = start + id_length;
		var temp_id = loc.substring(start, end);
		new_loc = loc.replace(temp_id, cid);
	}
	
	//window.location = new_loc + "#";
}
