$(document).ready(function () {
    $('.mansetPaging li a').each(function () {
        $(this).mouseover(function () {
            $('.haberCont').hide();
            $('#' + $(this).attr('rel')).show();
            $('.mansetPaging li').removeClass('selected');
            $(this).parent('li').addClass('selected');
        });
    });
    //galeride sonuncu module last classı ekle
    $('.galeriler .galeriContent .galeri:last , .footer .footerUst li a:last').addClass('last');
    //onerilenimajlaraction
    $('.oneriContent .right .thumbs li.thumb a').css('opacity', 0.5);
    $('.oneriContent .right .thumbs li.thumb a').each(function () {
        $(this).hover(function () {
            $(this).fadeTo('slow', 1);
        },
			function () {
			    $(this).fadeTo('slow', 0.5);
			}
			);
    });
    if ($.browser.msie) {
        $('input.blueBtn').removeClass('curved');
    }
    $('.kategoriDetay a.subKategori').click(function () {
        $('.altKategoriBant ').slideToggle('fast');
    });
    //subcategorilerOpen
    $('.kategoriBant .altKategoriBant ul.subCat li').each(function () {
        $(this).hover(function () {
            $(this).find('ul:first').show();
        },
			function () {
			    $(this).find('ul:first').hide();
			}
			);
    });
    $('.steps .stepTop .stepContent:first').show();
    $('.steps .stepTop h5').each(function () {
        $(this).click(function () {
            $(this).parents('.steps').find('.stepContent').hide();
            $(this).parent('.stepTop').find('.stepContent').show();
        });
    });
    $('a.baslat').click(function () {
        $(this).toggleClass('durdur');
        $(this).attr('title', 'Slayt şovu durdur');
    });
    $('.enSonYorumlananlar a.tumu').click(function () {
        $('.enSonYorumlananlar .topMenu').toggle();
    });
    $('.enSonYorumlananlar .topMenu li a').each(function () {
        $(this).click(function () {
            $('.enSonYorumlananlar .topMenu li a').removeClass('current');
            $(this).addClass('current');
            //$('.enSonYorumlananlar .top h4').html($(this).html());
            $('.enSonYorumlananlar .topMenu').hide();
        });
    });
    $('.tumKategori').click(function () {
        $('.tumKategoriDropdown .tumKatList').toggle();
    });

    $('.temaSecimi .thumbsCont li.curved.selected').find('input:first').attr('checked', 'checked');
    var bigPic = $('.temaSecimi .thumbsCont li.curved.selected').index();
    $('.bigPreview img').attr('src', '/d/i/content/temp_thumbs/th' + bigPic + '_285x623.jpg');
    $('.prevCont .head p span').text($('.temaSecimi .thumbsCont li.curved.selected').find('label:first').text());



    $('.temaSecimi .thumbsCont li').each(function () {
        $(this).click(function () {
            $('.temaSecimi .thumbsCont li').removeClass('selected');
            $(this).addClass('selected');
            $(this).find('input:first').attr('checked', 'checked');
            $('.alertTips').show();
            var bigPic = $(this).index();
            $('.bigPreview img').attr('src', '/d/i/content/temp_thumbs/th' + bigPic + '_285x623.jpg');
            $('.prevCont .head p span').text($(this).find('label:first').text());
        });
    });
});
