// JavaScript Document
jQuery(document).ready(function()
{
	jQuery('.input_hint, .n2_input').click(function()
	{
		if (jQuery(this).hasClass('input_hint')) jQuery(this).siblings('.n2_input:first').focus();
	});
	jQuery('.n2_input').focus(function() {jQuery(this).removeClass('n2_input_not_focused'); });
	jQuery('.n2_input').blur(function() { if (!jQuery(this).hasClass('n2_input_not_focused')) jQuery(this).addClass('n2_input_not_focused'); });
	jQuery('.n2_input').keyup(function()
	{
		if (jQuery(this).val() == '') jQuery(this).siblings('.input_hint:hidden').show('slow');
		else jQuery(this).siblings('.input_hint:visible').hide('slow');
	});
});
