<!--//---------------------------------+
//  Developed by Roshan Bhattarai  |
//	http://roshanbh.com.np         |
//  Fell Free to use this script   |
//---------------------------------+-->
$(document).ready(function(){
	//hide the all of the element with class staff_list
	$(".staff_list").hide();
	//toggle the componenet with class staff_list
	$(".staff_desc").click(function(){
		$(this).next(".staff_list").slideToggle(300);
	});
});
