var __modalDo__ = function(){
	$('.signinBox').each(function(){
		if($(this).attr('inited')!=undefined) return;
		$(this).attr('inited','ok');

		$(this).find('a.linkSignup').click(function(){
			$.modal.close();
			$.openSignup();
		});
		$(this).find('input:text').keydown(function(){
			if($(this).attr('className').indexOf('ok')<0) {
				$(this).val('');
				$(this).addClass('ok');
			}
		}).focus(function(){$(this).addClass('on');}).blur(function(){$(this).removeClass('on');});

		$(this).find('input#login_pw').keydown(function(){
			$('<input type="password" name="login_pw">').insertAfter($(this)).focus(function(){$(this).addClass('on');}).blur(function(){$(this).removeClass('on');}).addClass('ok').focus();
			$(this).remove();
			return true;
		});
		
	});
}
$(document).ready(function(){
	__modalDo__();
});

