function crypt(User){
  window.location.href="mailto:"+ User + "@afgalway.org";
}
if (typeof jQuery != 'undefined') {
  jQuery(function($) {
    if ($.browser.msie && $.browser.version.substr(0,1)<7) {
      // search for selectors you want to add hover behavior to
      $('#navMain li').hover(
        function() {
          $(this).addClass('hover');
        },
        function() {
          $(this).removeClass('hover');
        }
      );
    }
  });
}
