// ------------------------------ simple actions ------------------------------

var rinktineActions = {};
rinktineActions.jq= jQuery.noConflict();

(function($) {
    rinktineActions.jq(document).ready(function() {

    $("#allPlayersBlock").tabs();
    $("#allCoachesBlock").tabs();
    $("#scheduleBlock").tabs();
    $('#newsTitleBlock li').click( function(){
        
        $('#newsTitleBlock').find('.current').each(function() {
                $(this).removeAttr('class');

        });
        var currentNews=$(this).attr('rel');
        $(this).attr('class', 'current');
        $('#newsTabs').find('.newsThumbnail').each(function() {

            if( parseInt(currentNews)==parseInt($(this).attr('rel')) ){
                $(this).css('display','block');
            }else{
                $(this).css('display','none');
            }
        });

    });

    $('#newsTitleBlock .articleTitle').click( function(){

        window.location=$(this).attr('rel_link');

    });


    });
})(jQuery);
