$(document).ready(
	function() {
		/* create elements to house under construction content */
		$("div#midholder").append('<div id="under_construction_header">&nbsp;</div><div id="under_construction"></div>');
		
		$("a.under_construction").click(
			function(){
				/*load under construction content */
				$("div#under_construction").load("/templates/underconstruction.php");
				/*add class 'active' so element will be displayed */
				$("div#under_construction").addClass("active");
				/*add class 'active' so element will be displayed */
				$("div#under_construction_header").addClass("active");
				/* Remove highlighted tab styling */
				$("ul#menu li a").css("background","#000000").css("color","#FFFFFF").css("border-color","#000000");
				/* now highlight the under cnstruction tab */
				$("ul#menu li#affiliate-services-link a").css("background","#FFF").css("color","#000").css("border-color","#BFBFBF");
				return false;
			}
		);
		
	}
);