// JavaScript Document


$(document).ready(function(){


	$("#comment").click(function() {
	
		$("#comment").val("");

	});

	$("#s2jt").click(function() {
	
		var comment = $("#comment").val();
	
			if(comment != ''){
	
				$.ajax({
					
					url: 'modules.php',
					data: 'name=inside_handmade&op=show_suggestion&comment='+comment,
					dataType: 'html',
					type: 'get',
					
					success: function(data){
		
						$("#comment").val(data);
						$("#comment").css("color","red");
						$("#comment").css("font-weight","bold");
					}
					
				});
			
			}else{
				
				alert("You may not submit a blank comment...");
			
			}
		
	});
	
});