/*
 * common.js 0.1
 * 
 * Copyright (c) 2009 Takao Tagawa (dounokouno.com)
 * Licensed under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 * Since:     2009-02-25
 * Modified:  2009-02-25
 *
 * jQuery 1.3.2
 * 
*/

(function($){
	$(function(){
		/* enterキーで送信を停止 */
		$("form").submit(function(){
			return false;
		});
	});
})(jQuery);