﻿Site =
{
	start: function() {
		$('#page').css('visibility', 'visible');
	},

	fixNavigationSize: function() {
		if (Browser.ie7() || $.browser.safari && !Browser.chrome())
			$('#content').css('margin-top', '-49px');
	},

	initHeaders: function() {
		$('h2 + h3').css('margin-top', '-1em');
	},

	initDistrictSchoolList: function() {
		if ($('.ds_list')[0] && !$('#search_results')[0])
			$.freezeHeader($('.ds_list:last'));
	},

	initReportSelector: function() {
		var reportSelector = $('#reportSelector');
		if (reportSelector[0]) {
			reportSelector.insertBefore($('#breadcrumbs')).after($('<div/>'));
		}
}
};

$(Site.start);
