/* Constants */
var rootDirectory = "";

var defaultFileList = "index.htm";

/* Execute Pre Page Load Functions */
PINT_PrintCSS();

function init()
	{
	var fileName  = PINT_GetCurrentFileName();
	var directory = PINT_GetCurrentDirectory();

	PINT_RolloverImgInit("about", "About Us");
	PINT_RolloverImgInit("programs", "Programs");
	PINT_RolloverImgInit("technology", "Technology");
	PINT_RolloverImgInit("partners", "Partners");
	PINT_RolloverImgInit("news", "News");
	PINT_RolloverImgInit("investors", "Investor Relations");
	PINT_RolloverImgInit("careers", "Careers");
	PINT_RolloverImgInit("contact", "Contact Us");

	PINT_MenuInit( "aboutimg", "abouta", "aboutmenu" );
	PINT_MenuInit( "programsimg", "programsa", "programsmenu" );
	
	/*PINT_MenuInit( "technologyimg", "technologya", "technologymenu" );
	PINT_MenuInit( "partnersimg", "partnersa", "partnersmenu" );				
	PINT_MenuInit( "newsimg", "newsa", "newsmenu" );*/
	PINT_MenuInit( "investorsimg", "investorsa", "investorsmenu" );
	PINT_MenuInit( "careersimg", "careersa", "careersmenu" );
	PINT_MenuInit( "contactimg", "contacta", "contactmenu" );								
	
	
	// Uncomment this for popup windows
	PINT_AnchorPopupWindows();

	PINT_FormValidator();						
	}

function cleanup(){}

window.onload = init;
window.onunload = cleanup;	

