$(document).ready(function() {
	
	// CONTEXT HELP
	$('.contexthelp').hide();
	
	$('input[@type=text]').focus(function(){
		$(this).parent().next().children('.contexthelp').fadeIn('slow');
		$(this).css({color:'#333'});
	});
	$('input[@type=text]').blur(function(){
		$(this).parent().next().children('.contexthelp').fadeOut('slow');
	});
	
	$('input[@type=password]').focus(function(){
		$(this).parent().next().children('.contexthelp').fadeIn('slow');
		$(this).css({color:'#333'});
	});
	$('input[@type=password]').blur(function(){
		$(this).parent().next().children('.contexthelp').fadeOut('slow');
	});
		
	//SUBMIT BUTTON HOVER
	$('.submit input').hover(
		function(){
			$('.submit input + span').addClass('hover');
		},
		function(){
			$('.submit input + span').removeClass('hover');
		}
	);
	
});