function changeClass(){
	var href = document.location.href;
	$("a").filter(function(index){return $(this).attr("id").indexOf("link") > -1}).removeClass("current");
	if(href.indexOf("#") < 0)
	{
		href = href + "#International";
	}
	$("a").filter(function(index){return href.indexOf($(this).attr("href")) > -1}).addClass("current");
	//biomedical();
}

function linkClick(id)
{	
	$("a").filter(function(index){return $(this).attr("id").indexOf("link") > -1}).removeClass("current");
	$("#" + id).addClass('current'); 
}

function biomedical()
{	
	if(document.location.href.indexOf("the-opportunies") > -1)
		$(".primaryContent").scrollTo( "#Biomedical-Campus", {axis:'xy'});

	$(".jshide").removeClass("jshide");	
	$(".primaryContent").addClass("jsshow");
	$(".columnbot").addClass("jsshow");
	$("a").filter(function(index){return $(this).attr("class").indexOf("property-offer") > -1}).addClass("jsshow");
	if(document.location.href.indexOf("the-opportunies") > -1)
	{		
		$("a").filter(function(index){return $(this).attr("id").indexOf("link") > -1}).removeClass("current");
		$("a").filter(function(index){return $(this).attr("href").indexOf("#Biomedical-Campus") > -1}).addClass("current");	
	}
}
window.onload = function(){
	GSXReplacement();
	changeClass();
	biomedical();
	}