
/**
 * This script sets the target '_blank' to all aliases which have the css class "external". 
 *
 * you have to insert prototype into your html header before this script.
 *
 * @requirements prototype 1.6
 *
 * @author Helmut Wandl <helmut@wandls.net>
 * @version 0.beta
 *
 * @copy STERNWERK 2008
 *
 */
document.observe('dom:loaded', function() {
	$$('a.external').each(function(i) {
		i.target='_blank';
	});
});

