<!--
function showsitemap(){
	$("#sitemap").hover(
	
	function(){		
		$("#mainsitemap").show();
		},
	
	function(){

	$("#mainsitemap").hide();
		}

	);
	
	$("#mainsitemap").hover(function(){$(this).show();},function(){$(this).hide();});
	
}
function topmenu(rootid){
	var root=document.getElementById(rootid);
	var $root=$(root);
	var onstr='.gif';
	var offstr='_off.gif';
	var onstr1='_on.gif';
	var offstr1='.gif';
	var hoverclass='on';
	function rplks(str,keywords,newkey) {
		var patt=new RegExp(eval("/"+keywords+"/g"));
		//var patt=new RegExp(keywords,'g');
		if(patt.exec(str)!= null){
			var str=str.replace(patt,newkey);	
		}
		return str;
	}
	function curh(){
		
		$(">dl",$root).hover(
					function (i){
						//alert(this.id.substring(3));
							$(this).addClass("on"+this.id.substring(3));
							//alert($(">dt>a>img"));
						$(">dt>a>img:first",this).attr('src',rplks($(">dt>a>img:first",this).attr('src'),offstr,onstr));
						
						},
						function(){
							
							$(this).removeClass("on"+this.id.substring(3));
							$(">dt>a>img:first",this).attr('src',rplks($(">dt>a>img:first",this).attr('src'),onstr,offstr));
							}
							
						);
		
		$(">dl>dd>a>img",$root).hover(
					function (i){
						$(this).attr('src',rplks($(this).attr('src'),offstr1,onstr1)													);
						},
						function(){
							$(this).attr('src',rplks($(this).attr('src'),onstr1,offstr1));
							}
						);
		}
		//$("dl",$root).each(function(i){
									
									 curh();
									//});
	}
