String.prototype.trim= function()
	{
	return this.replace(/^\s+|\s+$/g, '');
	}

$('document').ready
	(
	function()
		{		
		//Hover activation for statbars
		$('#rightinfopane > .statbar').each
			(
			function(Index, Element)
				{
				$(Element).hover
					(
					function()
						{
						if($(this).find('.details').html().trim().length>0)
							{
							$(this).find('.details').css('display', 'inline-block');
							$(this).find('.details').stop(true, true);
							$(this).find('.details').slideUp(0);
							$(this).find('.details').slideDown(300);
							}
						},
					function()
						{
						//$(this).find('.details').css('display', 'none');
						$(this).find('.details').stop(true, true);
						$(this).find('.details').slideUp(300);
						}
					);
				}
			);
		}
	);
