$(function () {
	$('.error').hide();  
	$("#submit_btn").click(function (){
		//validate here
		$('.error').hide();
		
		var comment = $("#comment").val();
		var user_id = $("#user_id").val();
		var hope_id = $("#hope_id").val();
		
		if (comment == '') {  
     		$("label#comment_error").fadeIn(500, function(){});  
      		$("#comment").focus();  
      		return false;  
    	} 
    	
    	var dataString = 'data[Comment][comment]='+ comment + "&data[Comment][user_id]=" + user_id + "&data[Comment][hope_id]=" + hope_id;
    	
    	$('#comment_form').hide(500);
    	
    	$('#comment_result').html("<div id='message'></div>");
		$('#message').html("<h2>"+comment+"</h2>")
		.append("<p>komentar anda telah di simpan.</p>")
		.hide() 
		.fadeIn(1500, function() {  
			
		});
    	$.ajax({
    		type: "POST",
    		url: "/comments/ajaxSubmit",
    		data: dataString,
    		success: function () {
    			
    			
    		},
    		error: function () {
    			$("label#form_error").fadeIn(500, function(){});
    		},
    		start: function () {
    			$("label#form_error").fadeIn(500, function(){});
    		}
    		
    		
    	});
    	return false;
    	     
	});
});