/**
 * @author Meltdown2013.com
 */
$().ready(function() {	
	
	$("#formComment").submit(function() {

	$.post("comments/add", { 
	userNickname: $("input[name='userNickname']").val(), 
	userEmail	: $("input[name='userEmail']").val(),
	userComment	: $("textarea[name='userComment']").val()
	},
  	function(data){
  	$("#sonuc").html(data.msg);
    if (data.status == 'OK'){
    $("#yorum_ekle").remove();
    }
  	},"json");
  	return false;
  	
  	});
		  
	});	