/* Navigation bar to look OSX like... */
$(document).ready(function()
{
  /*$('nav li')
   .mouseleave(
     function(){
       $(this).find('a').animate( { "font-size": "16px" }, "slow" );
     }
   )
   .mouseover(
     function() {
       $(this).find('a').animate( { "font-size": "20px" }, "fast" );
     }
   );*/
});


