

	var clicked = -1;
	var clickedtext = "";
	
	
	function hoverstyle(id,s){
		if(clicked != id){
			document.getElementById(id).style.borderBottom = "2px solid #f02d30";
		}
		if(s==1){
			clicked = id;
		}
	}
	
	function releasehover(id){
		if(clicked != id){
			document.getElementById(id).style.borderBottom = "none";
		}
	}
	
	function init(){
		var tmp = window.location.search;
		var id;
		var tempa;
		if(tmp.indexOf('?') != -1){
			 tempa = tmp.split("?");
			 tempa = tempa[1].split("=");
			 if(tempa[1].indexOf('&') != 0){
				tempa = tempa[1].split('&');
				id = tempa[0];
			 }else{
			 id = tempa[1];
			 }
		}else{
			id="";
		}
		if(id!=""){
			hoverstyle(id,1);
		}else{
			hoverstyle('1',1);
		}
	}

