var FormInput={
	init:function(id){
		$('#'+id)
			.find('.table')
				.bind('mouseover',
					function(){
						$(this).parents('.FormInput:first')
							.addClass('hover')
						;
					}
				)
				.bind('mouseout',
					function(){
						$(this).parents('.FormInput:first')
							.removeClass('hover')
						;
					}
				)
				.bind('mouseup',
					function(){
						$(this).find('input:first')
							.focus()
						;
					}
				)
			.find('input')
				.bind('focus',
					function(){
						$(this).parents('.FormInput:first')
							.addClass('focus')
						;
					}
				)
				.bind('blur',
					function(){
						$(this).parents('.FormInput:first')
							.removeClass('focus')
						;
					}
				)
		;
	}
};
