/**
 * JavaScript by Jeffrey Ouma.
 * Copyright� 2008 artkenya.net Ltd.
 * All rights reserved.
 * 
 */
// Create the Home Namespace
Site.home= {};
Site.home.Init = function() {
	try {
		var elmArray;
		
		Site.home.tabView = new YAHOO.widget.TabView("tabview");
		Event.on("propertysearch", "click", function(){
			location.href = this.href;
		});
				
	} catch (e) {
		errorHandler(e);
	}
};
// Execute initialization function after the document has rendered
try {
	Event.onDOMReady(Site.home.Init);

} catch (e) {
	errorHandler(e);
}

