!window.jQuery && document.write(unescape('<script src="j/jquery-1.6.min.js"></script>'));

$('.m-article table tr:nth-child(even)').addClass('i-scope_tr');

$('.i-expand__data').each(function(){
    $(this).closest('.i-expand').data("rel", $(this)); 
});

$('.i-expand__tick').click(function(){

    var expand = $(this).closest('.i-expand');

    if ($(this).hasClass('i-expand_on')) {

        expand.data("rel").hide();

        $(this).removeClass('i-expand_on');

    } else {

        expand.data("rel").show();

        $(this).addClass('i-expand_on');

    }

});

$(document).ready(function()
{
	//$(".lightbox").lightbox();	
	
});

