// JavaScript Document


function text_change (e) {

document.getElementById(e).firstChild.style.color = '#532446';
document.getElementById(e).firstChild.style.fontStyle = 'normal';
document.getElementById(e).firstChild.style.fontWeight = 'normal';

document.body.style.cursor = "pointer";


return true;

}

function text_back (e) {
	
document.getElementById(e).firstChild.style.color = '#fee4f7';
document.getElementById(e).firstChild.style.fontStyle = 'normal';
document.getElementById(e).firstChild.style.fontWeight = 'normal';

document.body.style.cursor = "default";

return true;

}



function goTo (ee) {
	
var address = document.getElementById(ee).href;
document.location.href = address;

return true; 

}