﻿jQuery(document).ready(function(){
    jQuery("#nav ul").find("li:has(ul)").addClass("has-nodes");
	jQuery("#nav-btn a").click(function () {
      jQuery("div.translate").toggle("normal");
    });
	
	// open external links in new window (checking domain first)
	jQuery("a[href^='http']:not([href*='www.natsys-inc.com'])").each(function() {
		jQuery(this).attr("target", "_blank");
	});
	
	// manually make redirected pages open in new windows
	jQuery('.page-item-1188 a').attr("target", "_blank"); // biohabitats blog
	jQuery('.page-item-1202 a').attr("target", "_blank"); // biohabitats blog
	jQuery('.page-item-1200 a').attr("target", "_blank"); // network w/ biohabitats
	jQuery('.page-item-1206 a').attr("target", "_blank"); // twitter
	jQuery('.page-item-1204 a').attr("target", "_blank"); // facebook
	jQuery('.page-item-1208 a').attr("target", "_blank"); // linkedin
});
