$.widget( "ui.mazda_widget_forum_authform", {

	options : {},

	/**
	 * Конструктр
	 */
	_create : function()
	{
		this.over( $(this.element).find('li.login') );
		this.over( $(this.element).find('li.password') );
	},

	/**
	 * Хак для логина пароля
	 */
	over: function ( $selector )
	{
		var $input = $selector.find( 'input' );
		var $label = $selector.find( 'label' );

		if ( $input.val() != "" ) {
			$label.hide();
		}
		else
		{
			$label.show();
		}

		$input.focus( function()
		{
			$label.hide();
		} );
		$label.click( function()
		{
			$label.hide();
			$input.focus();
		} );

		$input.blur( function()
		{
			if ( $input.val() == "" ) {
				$label.show();
			}
		} );
	}
} );
