$j(document).ready(function() {
		
	$j('form.leaf_focus input, form.leaf_focus select, form.leaf_focus textarea').focus(function() {
		$j(this).parents('li').not('.nohov').addClass('focused').animate({ 'backgroundColor': '#d9d9d9' }, 200).find('.hint').fadeIn(200);
	}).blur(function() {
		$j(this).parents('li').not('.nohov').removeClass('focused').animate({ 'backgroundColor': '#ffffff' }, 200).find('.hint').fadeOut(200);
	});
	
	$j('form.leaf_hov li').not('.nohov').hover(function() {
  		$j(this).animate({ 'backgroundColor': '#d9d9d9' }, 200).find('.hint').fadeIn(200);
  	}, function() {
		if (!$j(this).hasClass('focused')) {
			$j(this).animate({ 'backgroundColor': '#ffffff' }, 200).find('.hint').fadeOut(200);
		}
 	});
	
	
});