ListHub = new Object();
		

ListHub.Ajax = new function() {

	this.getHtmlContent = function (divId, htmlSrc) {

		var container = $j("#" + divId);

		if(container.is("*")){
			$j.get(htmlSrc, function(data){
				container.html(data);
			});
		}
	}
}

