$(document).ready(function(){

	$('#loginHelp').hover(
		function() {$('#loginHelpBox').stop({clearQueue: false, goToEnd: false}).css({'display':'inline','position':'absolute'});},
		function() {$('#loginHelpBox').stop({clearQueue: true, goToEnd: false}).css({'display':'none','position':'static'});}
	);
	
	$('#courtsHelp').hover(
		function() {$('#courtsHelpBox').stop({clearQueue: true, goToEnd: true}).css({'display':'inline','position':'absolute'});},
		function() {$('#courtsHelpBox').stop({clearQueue: true, goToEnd: true}).css({'display':'none','position':'static'});}
	);

	$('#searchCourtHelp').hover(
		function() {$('#searchCourtHelpBox').stop({clearQueue: true, goToEnd: true}).css({'display':'inline','position':'absolute'});},
		function() {$('#searchCourtHelpBox').stop({clearQueue: true, goToEnd: true}).css({'display':'none','position':'static'});}
	);
	
	$('#searchDateHelp').hover(
		function() {$('#searchDateHelpBox').stop({clearQueue: true, goToEnd: true}).css({'display':'inline','position':'absolute'});},
		function() {$('#searchDateHelpBox').stop({clearQueue: true, goToEnd: true}).css({'display':'none','position':'static'});}
	);

});
