function megaHoverOver(){
  //$(this).find(".pageNavSub").stop().fadeTo('fast', 1).show();
  $(this).find(".pageNavSub").stop().show();
  $(this).find(".navLevel1").addClass("pageNavCurrent");
}
function megaHoverOut(){ 
  //$(this).find(".pageNavSub").stop().fadeTo('fast', 0, function() {
  //  $(this).hide(); 
  //});
  $(this).find(".pageNavSub").stop().hide();
  //});
  $(this).find(".navLevel1").removeClass("pageNavCurrent");
}




