jQuery(function() {
	jQuery(".ha_left dl").hover(
		function () {
			jQuery(this).css({ backgroundColor:"#f5faf1", borderColor:"#99ccff" });
		}, 
		function () {
			jQuery(this).css({ backgroundColor:"#ffffff", borderColor:"#eaeaea" });
		}
	);	
	jQuery(".ha_left dd img").hover(
		function () {
			jQuery(this).css({ borderColor:"#99ccff" });
		}, 
		function () {
			jQuery(this).css({ borderColor:"#eaeaea" });
		}
	);
});




