$(document).ready(function(){
   $('img').removeAttr('title')

   $('#searchIcon').live('click',function(){
        if( $('#searchform').is(":visible") ){
            $('#searchform').fadeOut(100);
            
        }else{
            $('#searchform').fadeIn(100);
        }
        return false;
   })

   $(".navAnchor").hover(
     function () {
       if ( $(this).hasClass('highlightedNav')){
           return false;
       }else{
           $(this).css('background-position', '0 -16px')
       }
     },
    function () {
      if ( $(this).hasClass('highlightedNav')){
           return false;
       }else{
            $(this).css('background-position','0 0')
       }
    }
);



})

