   $(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');
	});
	
	$('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');
	});
	
	
	$('table textarea').focus(function(){
		$(this).parent().next().children('.contexthelp').fadeIn('slow');
		$(this).css('color', '#333;');
	});
	$('table textarea').blur(function(){
		$(this).parent().next().children('.contexthelp').fadeOut('slow');
	});
	
	
	$('table select').focus(function(){
		$(this).parent().next().children('.contexthelp').fadeIn('slow');
		$(this).css('color', '#333;');
	});
	$('table select').blur(function(){
		$(this).parent().next().children('.contexthelp').fadeOut('slow');
	});
	
	
	
});
