function niceAdd(name,params,ID){
	$.get("nice.php",params, function(message,status){
		if("error"!=status){
			$("#"+name).html('<span id="fuki'+ID+'" class="fuki"><img src="images/nice_txt.gif" width="36" height="24" alt="ナイス！"></span><img src="images/icon_nonice.gif" alt="チェック済み" class="nice">');
			$("#fuki"+ID).fadeOut(1500);
		}
	});
	return false;
}

function checkForm(){
	if(!$("#comment_com").val()){ $("#comment_error").html("コメントを入力して下さい！"); $("#comment_com").css({backgroundColor:"#FFF4F4",border:"1px solid #CCC"}); return false; }
	//
	ID = $("#comment_id").val();
	SEX = $("#comment_sex").val();
	AGE = $("#comment_age").val();
	JOB = $("#comment_jobs").val();
	AREA = $("#comment_area").val();
	EMAIL= $("#comment_email").val();
	COM = $("#comment_com").val();
	params = {id:ID, sex:SEX, age:AGE, job:JOB, area:AREA, email:EMAIL, com:COM};
	$.post("send.php",params, function(view,status){
		if(status!="error") $("#forms").html('<div><h3 class="ColorRed" style="padding:30px;">送信完了しました！</h3></div>');
	});
}

/*
$(function(){
	$.ajaxTimeout(3000);
	
	// Loading
	$("#loading").ajaxStart(function(){
		$(this).show();
	});
	$("#loading").ajaxStop(function(){
		$(this).hide();
	});
	
});*/
