$(document).ready(function() {
	$(".itemlist dt").hover(
		function(){
			$(this).css("cursor","pointer"); 
		},
		function(){
			$(this).css("cursor","default"); 
		}
	);

	$(".itemlist dt").click(function(){
		var this_id = $(this).attr('id');
		$(this).next().slideToggle("slow");

		$(".itemlist dt").each(function() {
			if ($(this).attr('id') != this_id) {
				$(this).next().slideUp("slow");
			}
		});
	});
});
