
function ToprollOn(elem){
if(document.all){
elem.style.background = '#576687';
elem.style.color = '#FFCE00';
elem.style.cursor = 'hand';

}}

function ToprollOff(elem){
if(document.all){
elem.style.background= '#7E755B';
elem.style.color = '#ffffff';
elem.style.cursor = 'default';
}}

