$(function(){
    var _anamanset_interval;
    
    $('#anamanset_kisayollar_cont .__bir_manset').each(function(){
        $(this).bind('customlosefocus',function(){
            $(this).children('.__bir_kisayol').find('img').attr('src',$(this).children('.cache').children('.cerceve_2').html());
        })
        .bind('customwinfocus',function(){
            $('#anamanset_kisayollar_cont .__bir_manset').each(function(){
                $(this).trigger('customlosefocus');
            });
            
            var __link = $(this).children('.cache').children('.manset_link').html().replace(/\&amp;/ig,'&');
            
            $('#anamanset_ana_manset_cont').css('background-image', 'url(' + $(this).children('.cache').children('.manset_resim').html().replace(/\&amp;/ig,'&') + ')')
            .click(function(){
                document.location.href = __link;
            });
            
            $(this).children('.__bir_kisayol').find('img').attr('src',$(this).children('.cache').children('.cerceve_1').html());
        })
        .mouseenter(function(){
            $(this).trigger('customwinfocus');
            clearInterval(_anamanset_interval);
            _anamanset_cntr = $(this).index();
        })
        .mouseleave(function(){
            _anamanset_interval = setInterval(anamanset_oynat, 5000);
        })
        .click(function(){
            document.location.href = $(this).children('.cache').children('.manset_link').html().replace(/\&amp;/ig,'&')
        });
        
    });

    var _anamanset_cntr = 0;

    function anamanset_oynat(){
        $('#anamanset_kisayollar_cont .__bir_manset').eq(_anamanset_cntr).trigger('customwinfocus');
        _anamanset_cntr++;
        
        if(_anamanset_cntr == 3) _anamanset_cntr = 0;
    }
    
    anamanset_oynat();
    _anamanset_interval = setInterval(anamanset_oynat, 5000);
})
