var clearme = "";	
function startClock() {
	timeRemaining();
}	
function timeRemaining() {		
	if (clearme == 0){
		document.getElementById("share_profile").className="share_profile_link"
		setTimeout("clearelm()", 2000);
		clearme=1;
	}
	timerRunning = true;
}
function clearelm(){
	if (clearme == 1)
		document.getElementById("share_profile").className="share_profile_no_link";
}
function startOnLoad(){
	clearme = 0;
	loaded=1;
	if (loaded==1) {
		startClock();
	}		
}	
