/* WHEN DONE SETTING UP THIS FILE... PLEASE DELETE ALL THE ITEMS THAT ARE COMMENTED OUT 
 THAT YOU ARE NOT USING */

/* Constants */
/* var rootDirectory = "My Documents/My Webs/dougandkim/sitenew05"; */
var rootDirectory = "";

var defaultFileList = "index.htm";

PINT_BrowserDetection("browserupgrade.htm");

/* Execute Pre Page Load Functions */
PINT_PrintCSS();

// This should be uncommented if you are using DHTML Menus

function init()
	{
	var fileName  = PINT_GetCurrentFileName();
	var directory = PINT_GetCurrentDirectory();
	

	if( PINT_IsRootDirectory( PINT_GetCurrentFilePath() ) && PINT_IsDefaultFile() ) {
			
	if( directory == 'photos' )
		{
		changeImage();
		}			
				
		// Uncomment this for popup windows
		// PINT_AnchorPopupWindows();

		PINT_FirstFocus()
		
		// Uncomment for Nice Titles;
		//PINT_MakeNiceTitles("testdiv","testp");

		// This function is needed for Form Validation
		//PINT_FormValidator();
		
		PINT_CSSMenus("nav");
		PINT_CSSMenus("H_links");
	}
	else {
		PINT_CSSMenus("nav");
		}
		
	}
	

function cleanup(){}

window.onload = init;
window.onunload = cleanup;	

