	jQuery(function(){
		jQuery('ul#primary-nav').superfish({
			pathClass	: 'current_page_ancestor'
		});
	});
	
$(document).ready(function() {//open external links in new window
  $("a[@href^=http]").each(
    function(){
            if(this.href.indexOf(location.hostname) == -1) {
        $(this).attr('target', '_blank');
      }
    }
  )
});	