function f(id){
	arr=new Array("fFirm","fNews","fJob","fPhoto","fAfisha","fForum","fBlog","fTrade");
	arrHref=new Array("http://search.e-sochi.ru/firm","http://search.e-sochi.ru/news","http://search.e-sochi.ru/job", "http://search.e-sochi.ru/photo","http://search.e-sochi.ru/afisha","http://search.e-sochi.ru/forum","http://search.e-sochi.ru/blog","http://search.e-sochi.ru/trade");
	var k=arr.length;
	var i=0;
	for(var i=0;i<k;i++){
		if(id==arr[i]){
			document.getElementById("currentFind").value=arrHref[i];
		}
		document.getElementById(arr[i]).style.border="none";
		document.getElementById(arr[i]).style.borderTop="#76A6C3 1px solid";
		//document.getElementById(arr[i]).style.background="#e8e8e8";
		document.getElementById(arr[i]).style.background="";
		document.getElementById(arr[i]).style.color="#ffffff";
	}
	document.getElementById(id).style.border="#76A6C3 1px solid";
	document.getElementById(id).style.borderTop="none";
	document.getElementById(id).style.background="#AAD1F7";
	document.getElementById(id).style.color="";
}

function runFind(){
	if(document.getElementById("word").value.length>=3){
		location=document.getElementById("currentFind").value+"?word="+document.getElementById("word").value;
	}
}

function runFindKey(e){
	if (!e){
		var e = window.event;
	}
	if (e.keyCode){
		code = e.keyCode;
	}else if (e.which){
		 code = e.which;
	}
	if(e.keyCode==13 || ((code == 13) && (e.ctrlKey == true))){
		runFind();
	}
}