// --------------------------------------------------------
// 
// --------------------------------------------------------
$(function ()
{
	initTableHeaders();
	
	initTableStripes();
	
	initCollegeRankingsNav();
});

// --------------------------------------------------------
// 
// --------------------------------------------------------
function initTableHeaders ()
{
	$("table#rankings thead tr.categories div.header").each(
		function ()
		{
			var titleEl = $("strong", $(this));
			
			var sortEl = $("div.sort", $(this));
			
			var leftPos = titleEl.length ? titleEl.outerWidth() : 0;

			// var sortElWidth = sortEl.outerWidth();
			
			// titleEl.width(titleElWidth).css({
			titleEl.css({
				float: "none",
				position: "absolute",
				bottom: 0,
				left: 0
			});
				
			sortEl.css({
				float: "none",
				position: "absolute",
				bottom: 0,
				left: leftPos
			});
			
			$(this).css("visibility", "visible");
		}
	);
};

// --------------------------------------------------------
// 
// --------------------------------------------------------
function initTableStripes ()
{
	$("table#rankings tbody tr:odd").addClass("alt");
};

// --------------------------------------------------------
// 
// --------------------------------------------------------
function initCollegeRankingsNav ()
{
	$("form#schools-list select").change(
		function ()
		{
			if ($(this).val())
			{
				self.location = $(this).val();
			};
		}
	);
};


