/**
 * File: staffmaster_corners.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/
 *
 * Editing Instructions & Params:
 *
 *  radio		:	The Radius of the rounded corner, default is 20px
 *  inColor		:	The background color of the inner area of each staff_wrapper div
 *	outColor	:	The background color of the outter area, outside the rounded corners
 *  borderSize	:	The size of the border surrounding the staff_wrapper div
 *	borderColor :	The color of the border surrounding the staff_wrapper div
 *
 *	If you need assistance with Hex-based color values, simply google something like "html colors"
 *  	or, check out our website ( http://www.systemsunited.net ) for some easy links to html color values
 **/
jQuery(document).ready(function () {
  jQuery("div.staff_wrapper").corners({
    radio: 20,
    inColor: '#FFFFFF',
    outColor: '#C5C5C5',
    borderSize: 2,
    borderColor: '#C5C5C5'
  });
});
