﻿$(document).ready(function () {

    $('div#sonIc').cycle({
        fx: 'custom',
        cssBefore: { left: 850, top: 0, width: 0, height: 0, opacity: 1, zIndex: 1 },
        animOut: { opacity: 0 },
        animIn: { left: 0, top: 0, width: 850, height: 30 },
        cssAfter: { zIndex: 0 },
        delay: -5000,
        timeout: 5000,
        speed: 1500,
        pause: 1
    });

    var tMsg = "Aranacak kelimeyi yazınız...", tSearch = $('#kelime'), imgSearch = $('#aAra');
    tSearch.val(tMsg);
    tSearch.click(function () { if ($(this).val() == tMsg) $(this).val(''); }).blur(function () { if ($(this).val() == '') $(this).val(tMsg); }).keyup(function (e) { if (e.which == 13) imgSearch.click(); });
    imgSearch.click(function () { if (tSearch.val() == tMsg || tSearch.val().length < 3) { alert('Arama yapmak için en az 3 karakter girmelisiniz'); tSearch.val('').focus(); return false; } document.location.href = "/arama.aspx?q=" + tSearch.val(); return false; });
});
