document.observe('dom:loaded', function() {
	new Ajax.Autocompleter("search", "autocomplete_choices", "/php/search_autocomplete.php", {});
	
	$$('.ajax_update > div > .gallery-content > p').each(function(element) {
		new Ajax.InPlaceEditor(element, "/php/update_description.php", {okText: 'Save', rows: 10});
	});
	
	$$('.ajax_update > div > h1').each(function(element) {
		new Ajax.InPlaceEditor(element, "/php/update_title.php", {okText: 'Save', formClassName: 'title', highlightColor: '#ffffff'});
	});
});
