$(document).ready(function() {
//bind mouse enter event on each of the dd items
$("dd.dept_hover").mouseenter(function() {
	//kill any accordions in the display element
	$("#dept_disp > .dept_accordion").accordion( "destroy" );
	var thisid = $(this).attr('id'); //get the id of the currently hovered item
	$("#dept_disp").html($("#d_" + thisid).html()); //get the html of the related element and put it in the display element
	$("#dept_disp > .dept_accordion").accordion( { collapsible: true,active: false,autoHeight: false } ); //bind the accordion function to any relevant items in the display element
});
});