$(document).ready(function(){
	$("img.mail_image").click(function(e){
		if (!$('#mailform').length)
		{
			$('<div><img src="/i/wait.gif" /></div>').css({position:'absolute',left:e.pageX,top:e.pageY}).attr('id','mailform').appendTo(document.body);
		}
		else {$('#mailform').html('<img src="/i/wait.gif" />').css({left:e.pageX,top:e.pageY}).show();}
		$('#mailform').ajaxError(function(){$(this).hide();})
		$.get('/_ajax/mailform',{cid:$(this).attr('cid')},
		function(data)
		{
			$('#mailform').html(data);
			$('#mailform').show();
			$("#hide_mailform").click(function()
			{
				$("#mailform").hide();
			});
			$('input[@name=send]').click(function()
			{
				$('<div>Идет отправка сообщения...</div>').insertAfter($(this));
				$(this).hide();
				$('#mailform').load('/_ajax/mailform',{message:document.mailform.message.value,cid:document.mailform.cid.value},function()
				{
					$("#hide_mailform").click(function()
					{
						$("#mailform").hide();
					});
				});
			});
		});	
	});
});