document.addEvent('domready', function() {

		// external links
		$$('a[href^=http]').each(function(a) {
			if (window.location.hostname) {
				var hostname = window.location.hostname.replace("www.", "").toLowerCase();
				if (!a.get('href').contains(hostname)) {
					a.set({
						'target': '_blank'
					});
				}
			}
		});
		//
		// pdf links
		$$('a[href^=files]').each(function(a) {
			if (window.location.hostname) {
				var hostname = window.location.hostname.replace("www.", "").toLowerCase();
				if (!a.get('href').contains(hostname)) {
					a.set({
						'target': '_blank'
					});
				}
			}
		});
		//		
		
});

