function menuItemOver(object){	
	object.style.cursor='hand';
	object.style.backgroundColor='#97AFA0';
	object.style.color='#ffffff';

}
function menuItemOut(object){	
	object.style.cursor='default';
	object.style.backgroundColor='#455f60';
	object.style.color='#ffffff';	

}

function changeAttr(object,value){
	object.style.textDecoration = value;
}
function changeAttrLO(object){
	object.style.cursor='hand';
	object.style.color = '#999999';
}
function changeAttrLT(object){
	object.style.color = '#455f60';
	object.style.cursor='default';
}
function changeAttrUO(object){
	object.style.color = '#990033';
	object.style.cursor='hand';	
}
function changeAttrUT(object){
	object.style.color = '#567c7e';
	object.style.cursor='default';
}
