$(document).ready(function() {
	
	// CONTEXT HELP
	$('table .contexthelp').hide();
	
	$('table input[@type=text]').focus(function(){
		$(this).parent().next().children('.contexthelp').fadeIn('slow');
		$(this).css('color', '#333;');
	});
	$('table input[@type=text]').blur(function(){
		$(this).parent().next().children('.contexthelp').fadeOut('slow');
	});
	
});