$(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;});
		$('a[rel="external"]').addClass("external");

		// Zebra-stripe data tables
		$("#content table").addClass("data");
		/*$("table.data tbody").each(function() {
			$(this).removeClass("odd even");
			$("tr:odd", this).addClass("odd");
			$("tr:even", this).addClass("even");
		});
		*/
		
		isOdd = true;
		$("table.data tr").each(function() {
			$(this).removeClass("odd even");
			if($(this).hasClass("resetstripe")){
				isOdd=true;
			} else {
				if (isOdd){
					$(this).addClass("odd"); 
					isOdd=false;
				} else {
					$(this).addClass("even");
					isOdd=true;
				}
			}
			
		});
		


		// Initialize Lightbox
		$(".lightbox").lightbox();


		// sIFR Replace Content Headlines
		sIFR.replaceElement(named({sSelector:"h2", sFlashSrc:"flash/archerlight.swf", sColor:"#993300", sLinkColor:"#993300", sBgColor:"#993300", sHoverColor:"#993300", sWmode:"transparent", nPaddingTop:0, nPaddingBottom:0}));

	}
);
