/* Copy right 2010 E-Fulusi Africa (T) Ltd */

jQuery.extend({
/**
* Returns get parameters.
*
* If the desired param does not exist, null will be returned
*
* @example value = $.getURLSection();
*/ 
 getURLSection: function(){
	  var pathArray = window.location.pathname.split( '/' );
	  if(pathArray[1]=="") return null;
	  else return pathArray[1];
	}
});
