$(function(){
	$("#search-submit").bind("mouseover", function(){
		$(this).attr("src", "/copa/images/frontend/training/search-button-sel.gif");
	});

	$("#search-submit").bind("mouseout", function(){
		$(this).attr("src", "/copa/images/frontend/training/search-button-norm.gif");
	});

	if (document.location.href.match("age"))
	{
		var param_arr = document.location.href.split("/");
		$("select#select-option-age option:selected").removeAttr("selected");
		var elm = $("option[value=\"" + param_arr[param_arr.length-1] + "\"]");
		$("option[value=\"" + param_arr[param_arr.length-1] + "\"]").attr("selected", "selected");
	}

	if (document.location.href.match("type"))
	{
		var param_arr = document.location.href.split("/");
		$("select#select-option-type option:selected").removeAttr("selected");
		var elm = $("option[value=\"" + param_arr[param_arr.length-1] + "\"]");
		$("option[value=\"" + param_arr[param_arr.length-1] + "\"]").attr("selected", "selected");
	}
});

