 /*	-----------------------------------------------------------------------	
	Copyright:	umlungu consulting (pty) ltd
	Author:		Alan Benington
	Started:	2008-02-08
	Status:		beta
	Version:	2.0.0
	Build:		20080609
	License:	GNU General Public License
	-----------------------------------------------------------------------	*/

	
	try {
		var x_search = new ClassSearchX(x_debug);
	} catch(e) {
		alert("loading error(x_search): "+e.description);	
	}

/*	-----------------------------------------------------------------------	
	ClassSearchX:	Page javascript class
	-----------------------------------------------------------------------	*/
function ClassSearchX(dbg) {
	/*	Public properties	*/
	this.parameter = "";

	/*	Private properties	*/
	var _self = this;	// self allows for a method/property to be called internally
	var _debug = (dbg)? dbg : false;
	var _id = "ClassSearchX";
	
	
	/*	Public methods	*/
	this.Initialise = _Initialise;
	this.Test = _Test;
	this.Search = _Search;
	
	
	
	// Method:_Initialise
	function _Initialise(thisvar) {
		_Debug("_Initialise:", "thisvar", thisvar);
	}
	
	/// <summary>Method:_Test</summary>
	function _Test() {
		alert('testing working');
	}
		
	/// <summary>Method:_Search</summary>
	function _Search() {
		$("#QukSearchSuburb").autocomplete("Search.aspx");
	}
	
	

	
	/*	private methods 
		---------------	*/
	

	
	
}






