/**
 * This function will create an encrypted path name based on the string input.
 * IMPORTANT: REQUIRES THAT THE md5.js FILE FROM js_ext BE INCLUDED FIRST
 * @package SSPS
 * @subpackage SSjavascript
 * @author Marc Antony Vose <suzerain@suzerain.com>
 * @copyright Copyright 2009, Suzerain Studios
 * @since 1.0
 * @version 1.0
 * @param string the string to base the path on
 */
function SSCreateEncryptedPath( str ){
	var hsh = hex_md5(str);
	var encr_path = hsh.substring(0, 3) + '/' + hsh.substring(3, 6);
	//window.console.log( hsh );
	return encr_path;
}

