﻿function CssMouseOn(tekst,titel) {

   var tekstLink = parent.document.getElementById(tekst);
   var titelLink = parent.document.getElementById(titel);

   
       tekstLink.style.cssText = "font-weight:normal; font-family: Tahoma; font-size:10px; text-decoration: none; color: #02248d;";
       titelLink.style.cssText = "text-decoration: none; font-family:Century Gothic; font-size:14px; font-weight:normal; color:#cc0001;";




}
function CssMouseOut(tekst, titel,currentPage) {
    var tekstLink = parent.document.getElementById(tekst);
    var titelLink = parent.document.getElementById(titel);
    
    if (titelLink == currentPage) {
        tekstLink.style.cssText = "font-weight:normal; font-family: Tahoma; font-size:10px; text-decoration: none; color: #02248d;";
        titelLink.style.cssText = "text-decoration: none; font-family:Century Gothic; font-size:14px; font-weight:normal; color:#cc0001;";

    } else {
        titelLink.style.cssText = "text-decoration:none; font-family:Century Gothic; font-size:14px; font-weight:normal; color:#013145;";
        tekstLink.style.cssText = "font-weight: normal; font-family: Tahoma; font-size:10px; text-decoration: none; color: #013145;";
    }
    
}