$(document).ready( function() {
  
  $("a[rel='colorbox1']").colorbox();

  /* Add red class for ordered list */
   $('ol li').wrapInner('<span class="black"> </span>').addClass('red');
   
   /*  */
       $('ul li').blur(function() {
      $(this).addClass("current");
      alert("test");
      });
      
    //Submit button class change using css sprites
    $("#menu ul li").hover(function () {
      $(this).addClass("hover");
        }, 
        function () {
      $(this).removeClass("hover");
        }
    );
    
});

