function updateContent(container, url) {
	$(document).ready(function() {
		// update element
		$(container).load(url);
	});
	return false;
}