$(document).ready(function(){
	$("a").click(function () {
      $('a[@href^="http://"]').attr('target', '_blank');
    });
});