jQuery(function() {
	jQuery('a[href^="http://"]').filter(':not(.play_video)').click(function(e){
		window.open(this.href);
		e.preventDefault();
		return false;
	})
});
