$(function(){
	$('#button-write-pm').click(function(eve){
		eve.preventDefault();
		$('#snyggis-skriv').slideDown();
	});
	$('#sendpm').ajaxForm({
		url: BASE_URL + 'index.php/pms/send_pm', 
			beforeSubmit: function(){
				if ( $('[name=content]').val() == '' )
				{
					$('[name=content]').val('Du måste skriva ett meddelande.');
					return false;
				}
				else
				{
					$('#sendpm_loader').show();
				}
			},
			success: function(data){
				$('#sendpm_loader').hide();
				$('#snyggis-skriv-status').html('Skickat!');
				$('#snyggis-skriv').fadeOut('slow', function(){
					$('[name=content]').val('');
				});
			}
	});
});
