$(document).ready(
	function() {

		// Open links with rel="external" in new window - like ye ole' target="_blank"
		$('a[rel="external"]').click(function() {window.open( $(this).attr('href') ); return false;});


 		// Zebra-stripe data tables
		$("table.data tbody").each(function() {
			$(this).removeClass("odd even");
			$("tr:odd", this).addClass("odd");
			$("tr:even", this).addClass("even");
		});
		
		
		// sIFR Replace Content Headlines
		sIFR.replaceElement(named({sSelector:"#content h2", sFlashSrc:"/flash/archerbold.swf", sColor:"#002147", sLinkColor:"#002147", sBgColor:"#FFFFFF", sHoverColor:"#002147", nPaddingTop:0, nPaddingBottom:0, sFlashVars:"offsetTop=0"}));
		sIFR.replaceElement(named({sSelector:".homesidebar h4", sFlashSrc:"/flash/archerbold.swf", sColor:"#002147", sLinkColor:"#002147", sBgColor:"#ceeaaf", sHoverColor:"#002147", nPaddingTop:0, nPaddingBottom:0, sWmode:"transparent"}));
		sIFR.replaceElement(named({sSelector:".lp h4", sFlashSrc:"/flash/archerbold.swf", sColor:"#1f4102", sLinkColor:"#1f4102", sBgColor:"#ffffff", sHoverColor:"#5f9d1b", nPaddingTop:0, nPaddingBottom:0}));


	}
);