 /**
 * File: staffmaster_front.js
 *
 * Staff Master 0.7.5.5
 *
 * Staff Master - Staff Members and Departments Manager
 *
 * @version 0.7.5.5
 * @package StaffMaster_0_7_5_5
 * @subpackage: frontend_js
 * @copyright (C) 2007-2008 Travis Hubbard
 * @license http://www.gnu.org/licenses/  GNU/GPL v3
 * @link http://www.systemsunited.net/
 **/
jQuery(document).ready(function () {
  jQuery("a[class^='read_contact']").click(function () {
	var transitionTimeInMiliSeconds = 1000;
	var idClicked = "#" + jQuery(this).attr("alt");
	if ( jQuery( idClicked ).is(":hidden")) {
	  jQuery( idClicked ).show( transitionTimeInMiliSeconds );
	  jQuery( this ).text("Hide Details...");
	} else {
	  jQuery( idClicked ).hide( transitionTimeInMiliSeconds );
	  jQuery( this ).text("Show Details...");
	}
  });
});
