function mover(el) 
{ 
	el.style.backgroundColor='#F3EFE4'; 
	el.style.border = '1px solid #C4C1B8';
	el.style.cursor = 'Hand';
	el.style.cursor =  'pointer';		
}

function mout(el) 
{ 
	el.style.backgroundColor='#DCD9D2'; 
	el.style.border = '1px solid #DCD9D2';
}


function mout2(el) 
{ 
	el.style.backgroundColor='#E7E3D8'; 
	el.style.border = '1px solid #E7E3D8';
}

