// JavaScript Document
$(document).ready(function(){
	$("#gobut").click(function(){
		var str = $("#frm").serialize();
		$.ajax({
			type:"post",
			url:"sub.php",
			data:str,
			success:function(msg){				
				$("#notification").text(msg);
			}
		});
	});
	$("#loadi").ajaxStart(function(){
		$(this).show();
	});
	$("#loadi").ajaxStop(function(){
		$(this).hide();
	});
});
