function start(template)
//Use the template variable to dissallow the running of unneccessary Javascript
{
	onclick_menu( 'nav_menu' );
	
	convertToMenu( getObj('nav_about_us').getElementsByTagName('A')[0], getObj('nav_about_us_menu') );
	
	checklinks( 'external', 
		function() {
			this.target = '_blank';
			return confirm('You are now leaving denvercommunity.coop and visiting a partner site.  DCCU is not responsibile for the content of this site.  Do you wish to continue?');
		}
	);
	
	if(template !== 'Teen_Home' && template !== 'Teen') {
		make_shuffle( getObj('info_copy'), 'H4' );
	}
	
	//if a file were to try accessing this from any dir but root the path will be incorrect
	if(template == 'Home' && document.createElement && document.body.appendChild) {
		var object = document.createElement('OBJECT');
			object.id = 'top_flash';
			object.movie = 'imagesForTemplates/BV_topbar_flash.swf';
			object.quality = 'best';
			object.width = 602;
			object.height = 109;
		document.body.appendChild(object);
		if(!createFlash(object)) {
			object.style.display = 'none';
		}
	}
}
