/*********************************************************
 * Photo - JavaScript for "User" interface
 * @author Angela Jusuf
 * @created 06/08/2008
 * @modified 28/09/2008
 *********************************************************/
var App = {

	// Refresh/Update Article List
	updateList:function() {
		$('modulePhotoMenuContents').innerHTML = 'Loading....';
		new Ajax.Updater(	'modulePhotoMenuContents',
							'index.php',
							{	'method': 		'post',
								'parameters': 	{	'module':	'Photo',
													'type':		'ajax',
													'func':		'userFragment',
													'mode':		'photoGroupList'},
								'evalScripts':	true,
								'onFailure':	function() {
													alert('Cannot get photo list');
													$('modulePhotoMenuContents').innerHTML = 'Cannot load photo group menu!';
												}});
	}
}

/*
 * On Window onload, attach event handler to buttons
 */
$j(document).ready(function() {
	App.updateList();
});
