
 $(document).ready(function(){ 
		
        
    $("#nav ul li").hover(function() {
      $(this).addClass( 'hover');
    },function() {
      $(this).removeClass( 'hover' );
    });

    
    
    $(".text-input").focus(function() {
      this.value = "";
    });
    
    
    /* http://jquery.malsup.com/corner/ */
    if (!jQuery.browser.msie) { 
        $('#login-form  .text-input').corner('5px');
        $('#content fieldset').corner('10px');
    }
    
    
  });  

