$(function() {
	$('a[href^=http://]').attr('target','_blank');
	//$('img').attr('alt', function() {
//		return (this.alt ? this.alt : '');
//	});
	$('img').attr('title', function() {
		return (this.title ? this.title : this.alt);
	});
});
