/**
 * when rolling over main navigation add .hover class to handle ie6 hover bug
 */
 <!--
 $(document).ready(function() {
   $("#main-nav ul li").hover(function() {
     $(this).addClass("hover");
   },function(){
     $(this).removeClass("hover");
   });
 });
 //-->