﻿function arama_giris(kontrol) { if (kontrol.value == "Site İçi Arama!..") { kontrol.value = ""; } kontrol.style.backgroundColor = "WhiteSmoke"; kontrol.style.border = "solid 1px #990000"; kontrol.style.color = "#000666"; }
function arama_cikis(kontrol) { if (kontrol.value == "") { kontrol.value = "Site İçi Arama!.."; kontrol.style.color = "#000666"; } else { kontrol.style.color = "#000666"; } kontrol.style.backgroundColor = "#fff"; kontrol.style.border = "solid 1px #bbb"; }

navHover = function () {
    var lis = document.getElementById("navmenu").getElementsByTagName("LI");
    for (var i = 0; i < lis.length; i++) {
        lis[i].onmouseover = function () {
            this.className += " iehover";
        }
        lis[i].onmouseout = function () {
            this.className = this.className.replace(new RegExp(" iehover\\b"), "");
        }
    }
}
if (window.attachEvent) window.attachEvent("onload", navHover);