/* Constants */
rootDirectory = "/tigris";

/* Execute Pre Page Load Functions */
PINT_PrintCSS();
PINT_LoadMenuConfig();
function init()
	{
	var fileName  = PINT_GetCurrentFileName();
	var directory = PINT_GetCurrentDirectory();

	// set up rollovers for primary navigation for all sections except classes
	PINT_RORolloverInit( "overviewimg", "overviewimg", PINT_GetRootDirectory() + "/images/HNR_overview.gif", "Overview" );
	PINT_RORolloverInit( "animationsimg", "animationsimg", PINT_GetRootDirectory() + "/images/HNR_animations.gif", "Product Animations" );
	PINT_RORolloverInit( "specificationsimg", "specificationsimg", PINT_GetRootDirectory() + "/images/HNR_specifications.gif", "Specifications" );
	}

function cleanup(){}

window.onload = init;
window.onunload = cleanup;	


