F.main(function() {
	if (parent && parent.safe_browser_frame) {
		var prefix = 'http://url.pc120.com/urlauth/url/safebrowse/';
		$('a').each(function(){
			var a = $(this);
			var href = a.attr('href');
			if (href.indexOf('javascript:') < 0 && href.indexOf(prefix) < 0) {
				if (!new RegExp(SEARCH_DEFINE.URL_PATTERN).test(href)) {
					if (href.indexOf('/') < 0) {
						var url = location.href.split('/');
						url.pop();
						href = url.join('/') + '/' + href;
					} else {
						href = location.host + href;
					};
				};
				if (href.indexOf('http://') < 0) {
					href = 'http://' + href;
				};
				if (a.attr('target') != '_blank') {
					a.attr('target', 'top');
				};
				a.attr('href', prefix + '?url2browse=' + encodeURIComponent(href));	
			};
		});
	};
})
