imgn = new Image();
imgo = new Image();
imgn_i = new Image();
imgo_i = new Image();
imgn.src = "/match_php/image/home_menu_arrow.gif";
imgo.src = "/match_php/image/home_menu_arrow_over.gif";
imgn_i.src = "/match_php/image/home_menu_arrow_i.gif";
imgo_i.src = "/match_php/image/home_menu_arrow_over_i.gif";


function viewProfile() {
	document.search.action = "http://www.domeconnection.com/match_php/result.php";
	document.search.c.name = "country";
	document.search.s.value = "s";
	document.search.method = "GET";
	document.search.submit();
}

function imgOn(imgName, section) {
	if (document.images) {
		if (section == "_i") {
			document[imgName].src = "/match_php/image/home_menu_arrow_over_i.gif";
		} else {
    		document[imgName].src = "/match_php/image/home_menu_arrow_over.gif";
		}
    }
}

function imgOff(imgName, section) {
	if (document.images) {
		if (section == "_i") {
			document[imgName].src = "/match_php/image/home_menu_arrow_i.gif";
		} else {
    		document[imgName].src = "/match_php/image/home_menu_arrow.gif";
		}
    }
}



