// Imulus Global Javscript Code
function imulus_init() {
	// Add a "Home" link
	var homelink = '<li class="home" ><a href="/" title="EMCI Integrity: Home">Home</a></li>';
	$('#footer ul.autoclear').prepend(homelink);
	$('#nav ul.autoclear').append(homelink);

	// Change text to say "Overview" instead of the Page Title
	var overviewparent = $('#subnav ul li.parent a');
	$(overviewparent).html('Overview');

	// Ensure the first row in every table is class "header" 
	// (this naming was pulled from prior design)
	var $contentTables = $('#main table');

	$contentTables.each(function(index) {
		$(this).find('tr:first-child').addClass('header');
	});

}

jQuery(document).ready(function($) {
	imulus_init();
});

