/* Constants */

defaultFile = "index.php";

/* Execute Pre Page Load Functions */
PINT_PrintCSS();
function init()
	{

		// subpage rollovers
		PINT_RORolloverInit( "aboutimg", "aboutimg", themeRootDirectory + "/images/HNR_about.gif", "About" );
		PINT_RORolloverInit( "academicsimg", "academicsimg", themeRootDirectory + "/images/HNR_academics.gif", "Academics" );
		PINT_RORolloverInit( "researchimg", "researchimg", themeRootDirectory + "/images/HNR_research.gif", "Research" );
		PINT_RORolloverInit( "newsimg", "newsimg", themeRootDirectory + "/images/HNR_news.gif", "News" );
		PINT_RORolloverInit( "givingimg", "givingimg", themeRootDirectory + "/images/HNR_giving.gif", "Giving" );
		
		PINT_RORolloverInit( "admission", "admission", themeRootDirectory + "/images/HNR_admission.gif", "Prospective Students" );
		PINT_RORolloverInit( "students", "students", themeRootDirectory + "/images/HNR_students.gif", "Current Students" );
		PINT_RORolloverInit( "alumni", "alumni", themeRootDirectory + "/images/HNR_alumni.gif", "Alumni and Friends" );
		
		
	}

function cleanup(){}

window.onload = init;
window.onunload = cleanup;	

