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

	
	$('DIV span.radios').mouseenter(function(){
		$(this).next().children('.contexthelp').fadeIn('slow');
		$(this).css('color', '#333');
	});
	
	$('DIV span.radios').mouseleave(function(){
		$(this).next().children('.contexthelp').fadeOut('slow');
	});


	
	$('DIV select').focus(function(){
		$(this).parent().next().children('.contexthelp').fadeIn('slow');
		$(this).css('color', '#333');
	});
	$('DIV select').blur(function(){
		$(this).parent().next().children('.contexthelp').fadeOut('slow');
	});


	$('DIV textarea').focus(function(){
		$(this).parent().next().children('.contexthelp').fadeIn('slow');
		$(this).css('color', '#333');
	});
	$('DIV textarea').blur(function(){
		$(this).parent().next().children('.contexthelp').fadeOut('slow');
	});
	
});
