






 function OnLoad() {
		/* Home Page News Ticker */
		try
	{
		var ticker_holder = $('.ticker-holder').get(0);
		var ticker_text = $('.ticker').get(0);
		var ticker_pos = ticker_text.parentNode.offsetWidth;

		var ticker_data = $(ticker_holder).html();
		$(ticker_text).html('<marquee scrollamount="5" scrolldelay="0">' + ticker_data + '</marquee>');

		$('#sub-nav').hover
		(
			function() { $('marquee', this).get(0).stop();  },
			function() { $('marquee', this).get(0).start(); }
		);

		
	}
	catch (o) {}
	
		/* Home Page News Ticker */
		
		$("img.a").hover(
			function() {
			$(this).stop().animate({"opacity": "0"}, "medium");
		},
			function() {
			$(this).stop().animate({"opacity": "1"}, "medium");
		});
		
		$("#optWho").click(function(){window.location.href="about/"	});
		$("#optHistory").click(function(){window.location.href="about/history.html"	});
		$("#optNews").click(function(){window.location.href="news/"	});
		$("#optBlog").click(function(){window.location.href="thought leadership/"	});
		$("#optCareers").click(function(){window.location.href="careers/"	});
		$("#optContracts").click(function(){window.location.href="schedules/"	});
		$("#optContact").click(function(){window.location.href="contacts/"	});
		$("#optLeaderBios").click(function(){
			$('#homeMenuBios').fadeIn().delay(6000).fadeOut("fast");					  				  
		});
	

	  	$("#btnBios").click(function(){
			 $('#MenuBios').fadeIn().delay(6000).fadeOut("fast");
			 $('#MenuSvcs').hide();
			 $('#MenuAbout').hide();
								   
		})
	  	  $("#btnSvcs").click(function(){
			 $('#MenuSvcs').fadeIn().delay(6000).fadeOut("fast");
			 $('#MenuBios').hide();
			 $('#MenuAbout').hide();
								   
		})
		$("#btnAbout").click(function(){
			 $('#MenuAbout').fadeIn().delay(6000).fadeOut("fast");
			 $('#MenuSvcs').hide();
			 $('#MenuBios').hide();
								   
		})
	
		
		$("#btnDHarmon").click(function(){
			window.location.href="bios/dharmon/"				  
								  
		});
	
		
		$("#btnFGoeringer").click(function(){
			window.location.href="bios/fgoeringer/"				  
								  
		});
	
		
		$("#btnJGoldberg").click(function(){
			window.location.href="bios/jgoldberg/"				  
								  
		});
	
		$("#btnKToppert").click(function(){
			window.location.href="bios/ktoppert/"				  
								  
		});

		$("#btnMWhite").click(function(){
			window.location.href="bios/mwhite/"				  
								  
		});
	
		$("#btnKCampbell").click(function(){
			window.location.href="bios/kcampbell/"				  
								  
		});
	
		$("#btnTOrtiz").click(function(){
			window.location.href="bios/tortiz/"				  
								  
		});
		$("#btnDBarrow").click(function(){
			window.location.href="bios/dbarrow/"				  
								  
		});
	
		$(".SiteMenu A:first-child").addClass("NoBorder");
		
	}
	
	$(document).ready(function() {
    	OnLoad();
	});
	
	
   
