$(document).ready(function(){
	$(".StaffTitle").toggle(function(){
		var id = $(this).attr('rel');
		$("#StaffCont_"+id).slideDown('slow');
	},
	function(){
		var id = $(this).attr('rel');
		$("#StaffCont_"+id).slideUp('fast');
	})
	$(".StaffTitle").hover(function(){
		$(this).css('text-decoration','underline');
	},
	function(){
		$(this).css('text-decoration','none');
	})
});
