	$(document).ready(function(){
		$(".expand_body").hide();
		$(".expand_head").hover(function(){
			$(this).next(".expand_body").slideToggle(200);
		}, function() {
			// nothing
		});
	});