﻿
//websiteRoot is defined inside the master page as "~/"

$(document).ready(function () {
    var MenuLI = 0;
    var MenuColors = new Array('#ff2511', '#84bd2c', '#fb721a', '#899aff', '#c766ff', '#fb3f67');
    $('#menuElem li').click(function () { window.location = $(this).find('a').attr('href'); });

    $('.lightbox').lightBox({
        imageLoading: websiteRoot + 'App_Themes/Custom/lightbox/lightbox-ico-loading.gif',
        imageBtnClose: websiteRoot + 'App_Themes/Custom/lightbox/lightbox-btn-close.gif',
        imageBlank: websiteRoot + 'App_Themes/Custom/lightbox/lightbox-blank.gif'
    });

    $('.SelectedPrev').text("Önceki");
    $('.UnselectedPrev').text("Önceki");

    $('.SelectedNext').text("Sonraki");
    $('.UnselectedNext').text("Sonraki");

    $('.SelectedPage, .UnselectedPage').css("margin-left", "8px");

    /* Search Box String */
    if (!$('.searchTextBox').val()) $('.searchTextBox').val('carpe diem içerisinde');
    $('.searchTextBox').focus(function () { if ($(this).val() == 'carpe diem içerisinde') $(this).val(''); });
    $('.searchTextBox').blur(function () { if ($(this).val() == '') $(this).val('carpe diem içerisinde'); });

    $('#KitapListRepeater .KitapDetay:eq(1),#KitapListRepeater .KitapDetay:eq(3)').after('<img src="' + websiteRoot + 'App_Themes/CarpeDiem/hor.gif" style="clear:both; margin-bottom:16px; margin-top:0px; height:1px; margin-left:15px;">');
    $('#DergiListRepeater .DergiThumbContainer:eq(1),#DergiListRepeater .DergiThumbContainer:eq(3)').after('<img src="' + websiteRoot + 'App_Themes/CarpeDiem/hor.gif" style="clear:both; margin-bottom:16px; margin-top:0px; height:1px; margin-left:15px;">');

    $('.CMSSearchDialogSearchForTextBox').attr("style", "width:109px; background-color:#f7f7f7; padding:4px; position:relative; margin-bottom:-4px; font-family:Tahoma, Arial, font-size:11px; color:#767561; border:none;");
});

