function links(link){
	document.getElementById(link).style.background='#735e19';
	document.getElementById(link).style.color='#FFFFFF';
}



function colunadireita(link){
	document.getElementById(link).style.color='#FFFFFF';
}


function linksMenu(link){
	document.getElementById(link).style.background='#a4761f';
	document.getElementById(link).style.color='#000000';
}



function get() {

	var argv = get.arguments;
	
	if (window.XMLHttpRequest) {  // MOZILLA .. SAFARI..
		http = new XMLHttpRequest();
	} else if(window.ActiveXObject){ //IE
		try{
			http = new ActiveXObject("Msxm12.XMLHTTP");
		} catch(e){
			try {
				http = new ActiveXObject("Microsoft.XMLHTTP");
			} catch(e){
				window.alert("Erro, browser não detectou XMLHTTP. -> "+e);
			}
		}
	}
			
	http.onreadystatechange = function() {
		if(http.readyState == 4) {
			//alert(http.responseText);
			//alert(http.responseXML);
			//alert(argv[1]);
			document.getElementById(argv[1]).innerHTML = http.responseText;
		}
	}
	http.open('GET', argv[0], true);
	http.send(null);
}

