$(document).ready(function(){
	$('#loading').hide();
	$('#show_message').hide();
	var c_author = $("#c_author");
	var c_author_email = $("#c_author_email");
	var c_author_url = $("#c_author_url");
	var c_content = $("#textarea");
	var c_post_ID = $("#c_post_ID");
	var user_replay_private = $("#user_replay_private");
	$('#comment_form').submit(function(e) {  
		onSubmit(e);  
	 });
	function showMessage(data)
	{
		$('#show_message').html(data);
		$('#show_message').slideDown("slow").delay(5000).fadeOut("slow");
	}

	function clear_form_elements(ele) {
	
		$(ele).find(':input').each(function() {
			switch(this.type) {
				case 'password':
				case 'select-multiple':
				case 'select-one':
				case 'text':
				case 'textarea':
					$(this).val('');
					break;
				case 'checkbox':
				case 'radio':
					this.checked = false;
			}
		});
	
	}


	 function onPost(data)
	 {
		clear_form_elements('#comment_form');
		$('#loading').hide();
		$("#send").attr({ disabled:false});
		showMessage(data);			 	
	 }
	
   function onSubmit(e) {  
        e.preventDefault();
		  //this prevents normal post behavior and page refresh.  
        if(checkForm() == "1")
		{
			$("#send").blur();
			$("#loading").show();
			$.post("http://www.bahaneha.com/festival/index.php/home/comment", {  
			 comment_author : $('#c_author').val(),  
			 comment_author_email : $('#c_author_email').val(),
			 comment_author_url : $('#c_author_url').val(),    
			 comment_content : $('#textarea').val(),  
			 comment_post_ID : $('#c_post_ID').val(),
			 user_replay_private : $('#user_replay_private').is(':checked')
			 },   
			 function(data) {
			 	onPost(data);  
			 }); 
		}else{
			if(checkForm() == "2")
				showMessage("&#1662;&#1585; &#1705;&#1585;&#1583;&#1606; &#1601;&#1740;&#1604;&#1583; &#1607;&#1575;&#1740; &#1575;&#1740;&#1605;&#1604; &#1608; &#1606;&#1592;&#1585; &#1590;&#1585;&#1608;&#1585;&#1740; &#1605;&#1740; &#1576;&#1575;&#1588;&#1583;");
			if(checkForm() == "4")
				showMessage("&#1662;&#1585; &#1705;&#1585;&#1583;&#1606; &#1601;&#1740;&#1604;&#1583; &#1606;&#1592;&#1585; &#1590;&#1585;&#1608;&#1585;&#1740; &#1605;&#1740; &#1576;&#1575;&#1588;&#1583;");				
		}
		 
	}	 
	 function checkForm(){  
    	 var booll = $('#user_replay_private').is(':checked');
		 if(booll==true)
		 {
			 if(c_author_email.attr("value") && c_content.attr("value"))  
				 return "1";  
			 else  
				return "2";
		 }
		 if(booll==false)
	 	 {
			 if(c_content.attr("value"))  
				 return "1";  
			 else  
				return "4";			
		 }
			
	 }  
	 


});

