	//function initCommon()
	//{					

		<!-- Logo Replacement -->
		// Replace the static logo image with flash alternative
		var so = new FlashObject("/flash/header.swf", "flashHeader", "640", "190", "8", "#FFFFFF");
		so.addParam("quality", "high");
		so.addParam("wmode", "transparent");
		so.write("flash_header");
		<!-- Logo Replacement -->	
	
		<!-- sIFR Heading Replacement -->
		// Replace all H1 tags with flash text
		if(typeof sIFR == "function" ){			
			sIFR.replaceElement(named({sSelector:"h1", sFlashSrc:"/flash/vagrounded.swf", sColor:"#E31A5C", sBgColor:"#ffffff", sFlashVars:"offsetLeft=0&offsetTop=0", sWmode:"transparent"}));
		};
		<!-- sIFR Heading Replacement -->

		externalLinks();
		printPage();

	//}
	


	<!-- NEWS TICKER -->	
	$(document).ready(function() {
		var options = {
			newsList: "#newsTicker",
			startDelay: 40,
			placeHolder1: " _",
			placeHolder2: " |",
			tickerRate: 2,
			loopDelay: 3000
		}
		$().newsTicker(options);
	});	
	<!-- NEWS TICKER -->
		
	
	<!-- LINK MANAGEMENT -->
	// Change all external links to open in a new window
	function externalLinks() {
	//	if (!document.getElementsByTagName) return;
	//	var anchors = document.getElementsByTagName("a");
	//	for (var i=anchors.length-1; i>=0; i--) {
	//		var anchor = anchors[i];
	//		if (anchor.href && anchor.href.substr(0,7) == "http://")
	//		anchor.target = "_blank";
	//	}
 if (!document.getElementsByTagName) return; 
 var anchors = document.getElementsByTagName("a"); 
 for (var i=0; i<anchors.length; i++) { 
   var anchor = anchors[i]; 
   if (anchor.getAttribute("href") && 
       anchor.getAttribute("rel") == "external") 
     anchor.target = "_blank"; 
 } 
	}
	<!-- LINK MANAGEMENT -->
	
	
	<!-- Navigation - Animation -->	
	$(document).ready(function() {
		$('#nav ul a').hover(function() { //mouse in
			$(this).animate({ paddingLeft: '10px' }, 200);
		}, function() { //mouse out
			$(this).animate({ paddingLeft: 0 }, 200);
		});
	});	
	<!-- Navigation - Animation -->
	
	
	<!-- PRINT MANAGEMENT -->
	// Only provide print page link where javascript is enabled, so that markup is kept clean of mouse or key events to trigger script
	function printPage() {
		// check if DOM is available
		if(!document.getElementById || !document.createTextNode){return;}
		// check if there is a "No JavaScript" message
		var nojsmsg=document.getElementById('noprint');
		if(!nojsmsg){return;}
			
		// create a new list item and link to the application and replace
		// the non-JavaScript message with it.
		var newp=document.createElement('li');
		var newa=document.createElement('a');
		newa.href='javascript: window.print();';
		newa.id='print';
		newtxt='Print Page';
		newa.appendChild(document.createTextNode(newtxt));
		newp.appendChild(newa);
		nojsmsg.parentNode.replaceChild(newp,nojsmsg);
	} 
	<!-- PRINT MANAGEMENT -->	 
	
	
	<!-- Google Analytics -->
	/*
	var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
	document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
	
	try {
	var pageTracker = _gat._getTracker("UA-9075106-1");
	pageTracker._trackPageview();
	} catch(err) {}
	*/
	<!-- Google Analytics -->