﻿	$(document).ready(function(){
		//$("dd:not(:first)").hide();
		$("dd").hide();
		$("dt.rmenuhdr a").hover(function(){
			//$("dd:visible").slideUp("slow");
			$(this).parent("dt.rmenuhdr").css({background: "url(images/2gtdn.png) center left no-repeat"});
			//$(this).parent().siblings("dt.rmenuhdr").css({background: "url(images/2gtrt.png) center left no-repeat"}).next().slideUp("slow");
			$(this).parent().next().slideDown("slow");			
			return false;
		});
	});
