// MOUSE OVER
var tempf=''; var tempb='';
function mout(Item){
  Item.style.backgroundColor=tempb; 
  Item.style.color=tempf;
}
function mover_dark(Item){

  tempb=Item.style.backgroundColor;	
  tempf=Item.style.color;
  Item.style.backgroundColor="666666";
  Item.style.color="FFFFFF";
  Item.style.cursor="pointer";
}
function mover_red(Item){

  tempb=Item.style.backgroundColor;	
  tempf=Item.style.color;
  Item.style.backgroundColor="F55854";
  Item.style.color="FFFFFF";
  Item.style.cursor="pointer";
}
function mover_green(Item){

  tempb=Item.style.backgroundColor;	
  tempf=Item.style.color;
  Item.style.backgroundColor="83B60F";
  Item.style.color="FFFFFF";
  Item.style.cursor="pointer";
}
function mover_blue(Item){

  tempb=Item.style.backgroundColor;	
  tempf=Item.style.color;
  Item.style.backgroundColor="699CFF";
  Item.style.color="FFFFFF";
  Item.style.cursor="pointer";
}
function mover_orange(Item){

  tempb=Item.style.backgroundColor;	
  tempf=Item.style.color;
  Item.style.backgroundColor="FEBD2B";
  Item.style.color="FFFFFF";
  Item.style.cursor="pointer";
}