$(document).ready(function() {         
   $(".unselected,.selected").css({ 
      color: "#000000",
      fontWeight: "bold",
      //border: "2px solid #959595",
      fontSize: "1.2em",      
      //paddingLeft: "10",
      //paddingRight: "10",
      verticalAlign: "middle",
      textAlign: "center",      
      width: "120",
      height: "20"
   });

   $(".unselected").hover(
      function() {
         $(this).css({
            cursor: "pointer",
            backgroundColor: "#D5D5C3"
            //fontVariant: "small-caps"
         });
      },
      function() { 
         $(this).css({
            cursor: "default",
            backgroundColor: "#959595",
            fontVariant: "normal"
         });
      }
   );

   $(".unselected").click(function() {
      //alert($(this).attr('mode'));
      window.location = 'index.php?page=start&mode='+$(this).attr('mode');
   });

   $(".selected").css({             
      //backgroundColor: "#F50000"
      //backgroundColor: "#A38E75"
      backgroundColor: "#9D856C"
   }); 

   $(".unselected").css({   
      backgroundColor: "#959595"                 
   });                           
}); 