function languageHover() {
   $("a.flagActive img.flagActive").mouseover(function(){$(this).next().fadeIn();});
   $("img.flagHover").mouseout(function(){$(this).fadeOut();});

};

