$(document).ready(function() {         
   $(".vunselected,.vselected").css({ 
      color: "#000000",
      //fontWeight: "bold",
      //border: "1px solid #45633A",
      fontSize: "1.1em",
      marginBottom: "4", 
      width: "122",
      textAlign: "center"
   });

   $(".vunselected").hover(
      function() {
         $(this).css({
            cursor: "pointer",
            backgroundColor: "#D5D5C3"
            //fontVariant: "small-caps"
         });
      },
      function() { 
         $(this).css({
            cursor: "default",
            backgroundColor: "#959595",
            fontVariant: "normal"                  
         });
      }
   );

   $(".vunselected").click(function() {
      //alert('index.php?page=home&mode='+$(this).attr('mode')+'&function='+$(this).attr('function'));
      window.location = 'index.php?page=start&mode='+$(this).attr('mode')+'&function='+$(this).attr('function');            
   });

   $(".vselected").css({             
      backgroundColor: "#9D856C"
   });

   $(".vunselected").css({
      backgroundColor: "#959595"
   });                           
}); 
