$(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();
		
		// show searchbox
		$(".searchbox").hover(function(){
			$(".searchform").fadeIn("100");
		},function(){
			$(".searchform").fadeOut("500");
		});
		$(".searchboxlink").click(function(){return false;});
		
		
		// error message z-index peek-a-boo
		$(".contactbox .errorMessage.toggle").click(function(){
			$(this).hide();
		});

		// hide text area required message
		$(".contactbox textarea").click(function(){
			$(".contactbox span.required.toggle").hide();
		});

		// 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}));


	}
);
