$(document).ready(function(){
var parent_url = document.location.hash.replace( /^#/, '' );
if (parent_url == 'bankrut') {
	$('body').hide();
	if (!location.search) {
		location.search = 'sort=True';
	} else {
		$('body').show();
		$('#footer,#wrapper').hide();
		$('#search-result').appendTo( 'body' );
		$('a.command').each(function(){
			$(this).attr('href',$(this).attr('href')+'?sort=True#bankrut');
		});
		$('#srt tr th:nth-child(4),#srt tr td:nth-child(4),#srt tr th:nth-child(9),#srt tr td:nth-child(9)').hide();
	}
}
});
