function setup(){
	
	setupExternalLinks();
}

// Open postlinks in a new window
function setupExternalLinks(){
	$$("a.postlink").each(
		function (a){
			a.addEvent("click",
				function(e){
					new Event(e).stop();
					window.open(a.getProperty("href"),"_new");
				}
			);
		}
	);
	
	$$("dl.attachbox a").each(
		function (a){
			a.addEvent("click",
				function(e){
					new Event(e).stop();
					window.open(a.getProperty("href"),"_new");
				}
			);
		}
	);
	
	$$("dl.thumbnail a").each(
		function (a){
			a.addEvent("click",
				function(e){
					new Event(e).stop();
					window.open(a.getProperty("href"),"_new");
				}
			);
		}
	);
	
	$$("td.info a").each(
		function (a){
			a.addEvent("click",
				function(e){
					new Event(e).stop();
					window.open(a.getProperty("href"),"_new");
				}
			);
		}
	);
} 

window.addEvent('domready', setup);