function loadContent (file) {
	 $('content_holder').innerHTML = "<p id='ajax_loader'>Loading ...</p>";
	 			       url = "/" + file + ".html";
				       	   new Ajax(url, { method: 'get',update: $('content_holder') }).request();
}
