$(function(){
	var $loading = $('<img src="img/loading.gif" alt="loading" class="loading">');

	$('.events').each(function() {
		$(this).children('a').css('text-decoration', 'none');
		var $dialog = $('<div></div>')
			.append($loading.clone());
		var $link = $(this).one('click', function() {
			
			$dialog
				.load('/modules/calendar/fun.list.php', {id: $link.children('a').attr('href')})
				.dialog({
					title: 'Event List',
					width: 500,
					height: 300,
					bgiframe: true,
					resizable: false,
					buttons: {
						"Close": function(){
							$(this).dialog('close');
						}
					}
				});

			$link.click(function() {
				$dialog.dialog('open');

				return false;
			});
			
			$(this).children('a').click(function(){ $dialog.dialog('open'); return false; });

			return false;
		});
	});

	$('a.madjust').live('click', function(){
		alert($(this).attr('href'));
		return false;
	});
});
