function menuItemOver(object){
	object.style.cursor='hand';
	object.style.background='#97AFA0';
	object.style.color='#ffffff';
	object.style.fontWeight='bolder';
}
function menuItemOut(object){
	object.style.cursor='default';
	object.style.background='#455f60';
	object.style.color='#ffffff';	
	object.style.fontWeight='normal';	
}

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';
}
