// -- BEGIN LICENSE BLOCK -------------------------------
//
// This file is part of Guild Roster.
//
// Copyright © 2009 Simon Pottier and contributors
// Licensed under the GPL version 3.0 license
// http://www.gnu.org/licenses/gpl-3.0.html
//
// -- END LICENSE BLOCK ---------------------------------

$(document).ready(function()
{	
	////////////////////////////////////////
	//////////       RANKING      //////////
	////////////////////////////////////////
	$(".modal_ranking").nyroModal(
	{
		width: 700,
		height: 190,
		bgColor: '',
		showBackground: function (elts, settings, callback) {elts.bg.css({opacity:0}).fadeTo(300, 0.4, callback);},
		ajax: {cache:false, contentType:"application/x-www-form-urlencoded; charset=utf-8"},
		endFillContent: function()
		{
			$("#ranking_table").hide();
		},
		endShowContent: function()
		{
			$("#ranking_table").show();
			
			$('#ranking_table')
			.tablesorter({sortList: [[1,0]], headers: {0: { sorter: false}, 1:{sorter: 'digit'}, 2:{sorter: 'digit'}, 3:{sorter: 'digit'}}, widgets: ['zebra']});
		}
	});
});