$(function() {
	$('.baloon').fadeTo(0,0.6);

	$('span.lime:contains("「*」")').html('<img src="/img/check.gif" alt="必須項目" />');

//textbox
	$('input[@type="text"],textarea').css({"background-color":"#212929","border":"1px solid #000000","color":"#ffffff"});

//textbox focus
	$('input[@type="text"],textarea').focus(function(){
		$(this).css({"background-color":"#ffffff","border":"1px solid #b3d565","color":"#333333"});
	});
//textbox blur
	$('input[@type="text"],textarea').blur(function(){
		$(this).css({"background-color":"#212929","border":"1px solid #000000","color":"#ffffff"});
	});

//レビューフォーム開閉
	$('.revopen').click(function(){
		$('.entrywrap.contact.revform').toggle('slow');
	});

	$('textarea.resizable:not(.processed)').TextAreaResizer();
	$('iframe.resizable:not(.processed)').TextAreaResizer();

});

