function menuItemOver(object){
	object.style.cursor='hand';
	object.style.background='#f1b676';
	object.style.color='#ffffff';

}
function menuItemOut(object){
	object.style.cursor='default';
	object.style.background='#f99f3d';
	object.style.color='#ffffff';	
	
}

function changeAttr(object,value){
	object.style.textDecoration = value;
}
function changeAttrLO(object){
	object.style.color = '#f2d04b';
	object.style.cursor='hand';
}
function changeAttrLT(object){
	object.style.color = '#996633';
	object.style.cursor='default';
}
function changeAttrUO(object){
	object.style.color = '#ff0000';
	object.style.cursor='hand';	
}
function changeAttrUT(object){
	object.style.color = '#FF6600';
	object.style.cursor='default';
}
