/*Для списка бомбардиров*/
$(function() {
	$('tr.gool').hide();
	$('div#rasklad').click(function(){
		$('tr.gool').toggle();
	});
});



function sc_toggle_more(pid, tid, report) {
	var r = (typeof(report) !== 'undefined' && report == 1) ? 'R' : '';
	
	$('#scMore' + r + pid + '-' + tid).toggle();
	var aSc = $('#aSc' + r + pid + '-' + tid);
	if( aSc.attr('class') == 'maxbox' )
	{
		aSc.removeClass('maxbox').addClass('minbox');
	}
	else
	{
		aSc.removeClass('minbox').addClass('maxbox');
	}
	
	return false;
}


function sh_toggle_more(id) {
	$('#shMore' + id).toggle();
	var aSh = $('#aSh' + id);
	if( aSh.attr('class') == 'maxbox' )
	{
		aSh.removeClass('maxbox').addClass('minbox');
	}
	else
	{
		aSh.removeClass('minbox').addClass('maxbox');
	}
	
	return false;
}

