// ABM
// Common scripts

$(document).ready(function(){	
	
	// Open all external links in new Window
	$('a[href^="http://"]').attr({
    target: "_blank"    
  });
	
});
