window.onload = function() {

//code below is responsible for boxers order in the right column    
var setSelector = "#CmutyRight";
// set the cookie name
var setCookieName = "listOrder";
// set the cookie expiry time (days):
var setCookieExpiry = 7;
/////////////////////////////////////////////////////////////////
/////  YOU PROBABLY WON'T NEED TO EDIT BELOW  ///////////////////
/////////////////////////////////////////////////////////////////

// function that writes the list order to a cookie
function getOrder() {
	// save custom order to cookie
	$.cookie(setCookieName, $(setSelector).sortable("toArray"), { expires: setCookieExpiry, path: "/" });
	
}

// function that restores the list order from a cookie
function restoreOrder() {
	var list = $(setSelector);
	if (list == null) return
	
	// fetch the cookie value (saved order)
	var cookie = $.cookie(setCookieName);
	if (!cookie) return;
	
	// make array from saved order
	var IDs = cookie.split(",");
	
	// fetch current order
	var items = list.sortable("toArray");
	
	// make array from current order
	var rebuild = new Array();
	for ( var v=0, len=items.length; v<len; v++ ){
		rebuild[items[v]] = items[v];
	}
	
	for (var i = 0, n = IDs.length; i < n; i++) {
		
		// item id from saved order
		var itemID = IDs[i];
		
		if (itemID in rebuild) {
		
			// select item id from current order
			var item = rebuild[itemID];
			
			// select the item according to current order
			var child = $("div.ui-sortable").children("#" + item);
			
			// select the item according to the saved order
			var savedOrd = $("div.ui-sortable").children("#" + itemID);
			
			// remove all the items
			child.remove();
			
			// add the items in turn according to saved order
			// we need to filter here since the "ui-sortable"
			// class is applied to all ul elements and we
			// only want the very first!  You can modify this
			// to support multiple lists - not tested!
			$("div.ui-sortable").filter(":first").append(savedOrd);
		}
	}
}

// code executed when the document loads

	// here, we allow the user to sort the items
	$(setSelector).sortable({
		axis: "y",
		cursor: "move",
		update: function() { getOrder(); }
	});
	
	// here, we reload the saved order
	restoreOrder();
    $('#div439 a[title]').tipsy({gravity: 'e' , fade: true});
    $('#CmutyRight td:has(a.oneEvent)').addClass('bigday');
    $('#CmutyRight td:has(a.twoEvents0)').addClass('bigdayDouble');
    $('#CmutyRight h1:contains(Kalendarz)').addClass('titleNarrow');
    $('#CmutyRight td.today:has(a.oneEvent)').removeClass().addClass('bigdayToday');
    $('#CmutyRight td.today:has(a.twoEvents0)').removeClass().addClass('bigdayTodayDouble');
 }
