// 文字コード: UTF-8
function bindOpenAnotherWindow() {
	if ($(this).attr('href') == null) {
		return;
	}

	if ($(this).attr('href').indexOf(window.location.hostname) < 0
	 && $(this).filter('[href^=\'http://\'],[href^=\'https://\']').size() > 0)
	{
		$(this).bind('click', function() {
			window.open($(this).attr('href'));
			return false;
		});
	}
}

$(document).ready(function() {
	$('a').each(bindOpenAnotherWindow);

	$('input.button').mousedown(function() {
		$(this).addClass('button-mousedown');
	})
	$(document).mouseup(function() {
		$('input.button').removeClass('button-mousedown');
	});

	$('input.text,textarea').focus(function() {
		$(this).addClass('text-focus');
	}).blur(function() {
		$(this).removeClass('text-focus');
	});

	$('textarea').focus(function() {
		if ($(this).text() == '記入してください。') {
			$(this).text('');
		}
	}).blur(function() {
		if ($(this).text() == '') {
			$(this).text('記入してください。');
		}
	});
});
