$(function(){
	var infoButton = $('a.infoButton');
	
	if ($(infoButton).length > 0)
	{
		$(infoButton).live('click', function(){ 
			$('div.moreInformation').hide();
			$(this).next('div.moreInformation').show();
		});
		
		$('div.moreInformation')
			.live('click', function(){ $(this).hide(); })
			.live('mouseout', function(){ setTimeout('closeInfoWindows()', 500); });
	}
});

function closeInfoWindows()
{
	$('div.moreInformation').hide();
}