jQuery(function () {
	var $ = jQuery;
	var default_message = '銘柄コードまたは企業名を入力してください。';
	$('form:first')
		.submit(function (e) { e.preventDefault();
			var param = $(this).find(':text:first').val();
			if (!param || param == default_message) return;
			$.ajax({
				type : "GET",
				url : this.name,
				data : {'q' : param},
				dataType : "text",
				success : function(text){
					var id = 'swf_index_swf_external';
					($('#'+id).get(0) || window[id] || document[id] || swfobject.getObjectById(id)).set_search_result(text);
				}
			});
		})
		.find(':text')
			.val(default_message)
			.focus(function () {
				if (this.value != default_message) return;
				this.value = '';
			})
			.blur(function () {
				if (this.value != '') return;
				this.value = default_message;
			})
	;

});
