var zIndex = 50;

$().ready(function()
{
	$('.postIt').draggable({ 
		start: function(event, ui)
		{
			$(this).css("z-index", zIndex++);
		}
	});
	
	$('.showPostItForm').click(function()
	{
		$('.postItForm').show('fast');
		return false;
	});
	
	$('.postItForm .close').click(function()
	{
		$('.postItForm').hide('fast');
	});
	
	$('.postItForm .submit').click(function()
	{
		$.get("/index.php?ajax=1", {name: $('#name').val(), message: $('#message').val()},
				function(data)
				{
					if (data != "1")
					{
						alert(data);
					}
					else
					{
						$('#name,#message').val("");
						$('.postItForm').hide();
						location.reload();
					}
				}
		);
	});
});

