
// initialize the DHTML History framework
jQuery(document).ready(function() {
	dhtmlHistory.initialize();
			
	// set google analytics id and subscribe to DHTML history change events
  	_uacct = "UA-4323235-1";
	dhtmlHistory.addListener(historyChange);
	
	// on first load, go to index page
	if (dhtmlHistory.isFirstLoad()) {
				
		// get location from url
		var location = dhtmlHistory.getCurrentLocation();
		// load new location (index page)
		historyChange(location, location.substring(location.indexOf(";") + 1));
		urchinTracker("/index");
	}
});

