﻿$(document).ready(function () {
    $('#search').focus(function () {
        $("#search").val("");
    });

    $('#search').focusout(function () {
        if ($("#search").val() == "") {
            $("#search").val("Arama");
        }
    });

    $("#search").keypress(function (e) {
        if (e != null && e != undefined) {
            var code = (e.keyCode ? e.keyCode : e.which);
            if (code == 13) {
                LoginPostExternal();
            }
        }
    });

    $('#sendgift').mouseover(function () {
        $("#sendgiftImage").show();
    });

    $('#sendgift').click(function () {
        window.location.href = "/Home/Index.aspx";
    });

    $('#sendgift').mouseout(function () {
        $("#sendgiftImage").hide();
    });

    $('#check').mouseover(function () {
        $("#useCheckImage").show();
    });

    $('#check').click(function () {
        window.location.href = "/Home/Index.aspx";
    });

    $('#check').mouseout(function () {
        $("#useCheckImage").hide();
    });

    $('#text').mouseover(function () {
        $("#textarea").addClass('area');
    });

    $('#text').mouseout(function () {
        $("#textarea").removeClass('area');
    });



    //    $('#sendgift').mouseover(function () {
    //        $("#sendgiftImage").fadeIn(500);
    //    });

    //    $('#sendgiftImage').click(function () {

    //    });

    //    $('#sendgift').mouseout(function () {
    //        $("#sendgiftImage").fadeOut(500);
    //    });
});


