$(document).ready(function() {
	//検索フォーム
	var target_form   = $('div#header form');
	var target_column = $('div#header form dl dd input');
	var default_word  = '検索';
	var flag          = false;

	if (target_column.val() == '') {
		target_column.val(default_word);
	}

	target_column.focus(function() {
		if (this.value == default_word) {
			$(this).val('');
		}
		$(this).css({'color': '#000000', 'background': '#FFFFFF'});

		flag = true;
	});
	target_column.blur(function() {
		if (this.value == '') {
			$(this).val(default_word);
		}
		$(this).css({'color': '#AAAAAA', 'background': '#666666'});
	});
	target_form.submit(function() {
		if (target_column.val() == default_word && flag == false) {
			return false;
		}
	});

	//ColorBox
	$('a[href$=.png]').colorbox();
	$('a.colorbox').colorbox({ width:'80%', height:'80%', iframe:true });

	//著作権表記
	$('div#footer address').html('Copyright &copy; 2009-2012 freo.jp, All rights reserved.');
});

