$(document).ready(function() {

	var AdditionalResourcesContent = $("#AdditionalResourcesContent").html();
	if(AdditionalResourcesContent ==""){
		$("#AdditionalResources").hide();
	}
	else{
		$("#AdditionalResources .container").html(AdditionalResourcesContent);
	}
	var TradeShowContent = $("#TradeShowContent").html();
	if(TradeShowContent ==""){
		$("#UpcomingTradeshows").hide();
	}
	else{
		$("#UpcomingTradeshows .container").html(TradeShowContent);
	}
	
	
	//make sure the left border is displayed
	if($("#AboutUsRight").height() < 750){
		$("#AboutUsRight").css("height", "750px");
	}
	
	//make sure News/Events nav link is always on
	$("#global ul li a[href='/news-events/']").addClass("on");
	
	$("#tradeshowContainer img[align='left']").each(function() { $(this).css("margin-right", "20px").css("float", "left"); });
    $("#tradeshowContainer img[align='right']").each(function() { $(this).css("margin-left", "20px").css("float", "right"); });
});