/*----- page onload function -----*/
$(document).ready(function(){
// 		$('ul#MenuRed').superfish( { dropShadows: false, disableHI: true, });
	});
	
	
/*----- toggle banners function (to prevent Flash content from overlapping active thickbox window)  -----*/
function togglePageAds( bOn )
{	$(".LargeBanner *, .SmallBanners *").css("visibility", bOn? "visible": "hidden");
}

/*----- jQuery fix - adjust right margin for images smaller than 192px so that multiple images do not look misaligned -----*/
function alignArticleImages( container )
{
	$(document).ready
	(	function ()	
		{ 	$(container + " img.floatleft").each( function(){ this.style.marginRight=18+192-this.width + "px"; })
			$(container + " img.floatright").each( function(){ this.style.marginLeft=18+192-this.width + "px"; })
		}
	);
}
