$(function(){
  //add css class to input[type=text] fields if the selector is not natively supported
    // IE6 hack: Since some CSS selectors are not working, we simulate with class names.
    /*@cc_on@if (@_jscript_version <= 5.6)
    $('input[type=text],input[type=password],input[type=radio],input[type=checkbox]').
        each(function() { $(this).addClass('type_' + this.type); });
    @end@*/


      $("#navigation li").hover( 
      function() {$(this).addClass("sfhover")}, 
      function() {$(this).removeClass("sfhover")} 
      ); 
 

});

