﻿$(Document_Loaded);

function Document_Loaded() {
    var menuId = "#saturday";
    $(menuId).find('li:has(ul)').hover(
        function () {
            $(this).find('ul:eq(0)').css('display', 'block');            
        }
        , function () {
            $(this).find('ul:eq(0)').css('display', 'none');            
        }
    );

    //$('#slider,#slider2').nivoSlider({ controlNav: true });
}

/*
function Validate() {

    var errorMsg = "";

    var txtAdSoyad = document.getElementById('ContentPlaceHolder1_txtAdSoyad').value;
    var txtMail = document.getElementById('ContentPlaceHolder1_txtMail').value;

    if (txtAdSoyad == "") { errorMsg += "\n> Gerekli Ad ve Soyad"; }
    if (echeck(firm_X2) == false) { errorMsg += "\n> Geçersiz E-mail"; }
    if (errorMsg != "") {
        msg = ""; errorMsg += alert(msg + errorMsg + "\n\n");
        return false;
    }
    else {
        return true;

    }
}
*/
