﻿

$(document).ready(function() {
    $(function() {

        $('form').bind("keypress", function(e) {
            if (e.keyCode == 13) return false;
        });


    });





    $("div.divBitch").hide();
    $("#ctl00_AIHD").hover(function () {
        $("div.divBitch").stop(true,true).hide();
        $("#divBitchID").stop(true,true).slideDown();
    }, function () {
        $("div.divBitch").stop(true, true).slideUp(500);
        $("#divBitchID").stop(true,true).slideUp(500);
    });

    $("#ctl00_AYayin").hover(function () {
        $("div.divBitch").stop(true,true).hide();
        $("#divYayinID").stop(true, true).slideDown();
    }, function() {
        $("div.divBitch").stop(true, true).slideUp(0);
        $("#divYayinID").stop(true, true).slideUp(500);
    });

    $("#ctl00_ABasin").hover(function() {
        $("div.divBitch").stop(true, true).hide();
        $("#divBasinID").stop(true, true).slideDown();
    }, function() {
        $("div.divBitch").stop(true, true).slideUp(0);
        $("#divBasinID").stop(true, true).slideUp(500);
    });

    $("#ctl00_ARapor").hover(function() {
        $("div.divBitch").stop(true, true).hide();
        $("#divRaporID").stop(true, true).slideDown();
    }, function() {
        $("div.divBitch").stop(true, true).slideUp(0);
        $("#divRaporID").stop(true, true).slideUp(500);
    });


    $(function() {
        var zIndexNumber = 100;
        $('div').each(function() {
            $(this).css('zIndex', zIndexNumber);
            zIndexNumber -= 2;
        });
    });
});

function f_Ara() {
    var Srch = $("input#InputSrch").val();
    if (Srch != "")
        location.href = "Arama.aspx?srch=" + Srch;
}

