$(document).ready(function() {
		var best_rate_timeout;
		$('#best_rate_link a').hover(function() {
			$('#best_rate').show();
		},function() {
			var closure = function() {
				$('#best_rate').hide();	
				}
			best_rate_timeout = setTimeout(closure,200);
		});
		$('#best_rate').hover(function() {
			clearTimeout(best_rate_timeout);
			$('#best_rate').show();
		},function() {
			var closure = function() {
				$('#best_rate').hide();	
				}
			best_rate_timeout = setTimeout(closure,200);
		})
});