jQuery(document).ready(function()
{
	
	$("#comment_text").markItUp(mySettings);

	function follow_link(link)
	{
		document.location = link;
	}
	
//comments functions

jQuery("#article_comment_submit").click(function (){
		
		jQuery("#comments_error").hide();
		
		
		
		jQuery("#comments_error").html("");
		var comment_text = jQuery("#comment_text").val();
		
			if ( comment_text != '')
			{
				//alert ('все в порядке');
				document.com_add_form.submit();
				return true;
			}
			else
			{
				jQuery("#comments_error").html("");
				jQuery("#comments_error").html("Введите текст комментария!");
				jQuery("#comments_error").fadeIn('fast');
				return false;
			}

	});


}); 
