//Function which displays the tabs
	function ShowContent(content){
		$(".tab-content").hide();
		$("#"+content+"_tab").show();
		$(".tabs-selected").removeClass("tabs-selected");
		$("li:has(a[href=#"+content+"])").addClass("tabs-selected");
	}

$(document).ready(function() {

	//Checking the url for anchor links
	if(location.href.indexOf('#agriculture')!=-1) {
		ShowContent('agriculture');
	}else if(location.href.indexOf('#education')!=-1){
		ShowContent('education');
	}else if(location.href.indexOf('#entertainment')!=-1){
		ShowContent('entertainment');
	}else if(location.href.indexOf('#healthcare')!=-1){
		ShowContent('healthcare');
	}
	
});


