function getContentInto( divName, content ) {
	var target = "#" + divName;
	var source = content + ".html";
	$(target).load(source, {}, function() {
			$(target).fadeIn("fast");
		});
}

