$(document).ready(function(){
	$('a.popup').click(function(){
		window.open(this.href, 'team', 'width=440,height=200,scrollbars=no');return false;
	});
	
	$("a[@href$='.pdf']").click(function(){
		window.open($(this).attr('href')); return false;
	});
	
	$("a[@href^=http]").each(
    function(){
	    if(this.href.indexOf(location.hostname) == -1) { 
        $(this).attr('target', '_blank');
      }
    }
  );
});
		

