var user_custom_homepage = new function()
{
	var o = this;
	
	// Shows the popup to customize the home page
	o.customize = function()
	{
		$.get(
			'/profile/settings/custom_homepage.php',
			function(data)
			{
				$.popup.inline(data, {width: 400});
			}
		);
	}
	
	o.submit = function(el)
	{
		var options = {success: o.submit_done};
		$(el).ajaxSubmit(options); 
	}
	o.submit_done = function()
	{
		$.popup.inline('<div style="text-align: center">Your categories have been updated<br />The page will refresh in 2 seconds.</div>');
		setTimeout(
			'document.location = document.location',
			2000
		);
	}
}
