	function extlinks() {
		var a = document.getElementsByTagName("a");
		var jstest = document.getElementById("jstest");
		var jstext = document.getElementById("jstext");
		
		for ( var i = 0; i<a.length; i++ ) {
			if ( 
				(
				 !a[i].href.match(location.hostname) 
				 || !(("www."+a[i].href).match(location.hostname))
				)
				&& !a[i].innerHTML.match("img") 
				&& (0 < !a[i].name.length)
				&& !a[i].href.match("javascript")
				&& !((a[i].href).match("begun.ru"))
				&& !((a[i].href).match("vkontakte.ru"))
				&& !((a[i].href).match("twitter.com"))
				) {
				a[i].style.background += 'url("/images/external.png") right no-repeat';
				a[i].style.paddingRight='14px';
			}
		}
		
		return 1;	
	}
