function globalBinds() {
	$(".bnav").hover(
		function() {
			if($(this).attr("id")) { return; }
			$(this).children("img").css("opacity","1.0");			
		},
		function() {
			if($(this).attr("id")) { return; }
			$(this).children("img").css("opacity","0.7");
		}
	);

	$(".navwhy").click(function() { document.location="/"; });
	$(".navabout").click(function() { document.location="/about/"; });
	$(".navwork").click(function() { document.location="/warehouse/"; });
	$(".navresearch").click(function() { document.location="/research/"; });
	$(".navblog").click(function() { document.location="http://blog.doremus.com/"; });
	$(".navcontact").click(function() { document.location="/contact/"; });
	$(".navtwit").click(function() { window.open("http://twitter.com/doremus") });
	$(".navlinkedin").click(function() { window.open("http://www.linkedin.com/companies/doremus") });
}
