
document.body.className += ' jsOn';

$(document).ready(function(){
		
		$('#tab1 .footnoteContainer').each(function(){
			maxWidth = 0;
			if ($(this).outerWidth() > maxWidth)
			{
				maxWidth = $(this).outerWidth();
			}
		});
		
		$('#tab1 .footnoteContainer').css('width',maxWidth);
		
		$('#tab1 .footnoteContainer').hover(function()
			{
				$('.footnote',this)
						.addClass('active')
						.css('left',(maxWidth - 1) + 'px')
						.css('top',function()
							{
								return '-' + $(this).outerHeight()/3 + 'px'
							}
						);
			}
			,
			function()
			{
				$('.footnote',this)
						.removeClass('active')
			}
		);
	
	});
