//load the script when the DOM is ready

$(document).ready(function() {
     
     // for any 'a' element
     // take focus off of the link when it's clicked
     $('a').click(function() {
       this.blur();
     });
     
     // hack to fix gap appearing beneath nav in IE6
     $("#navigation ul li a.contact").addClass('over');
     $("#navigation ul li a.contact").addClass('out');

});
