$(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");
		});


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


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

	}
);

