$$('ul.tab a').each( function (e) {
	
	if ( e.hasClassName ( 'tab-external') ) {
		return true;
	}
	
	if ( !e.hasClassName('active') ) {
		$('content-' + e.identify() ).hide();
	}
	
	e.onclick = function() {
		$$('ul.tab a').each( function(temp) {
			if ( !temp.hasClassName ( 'tab-external') ) {
				$('content-' + temp.identify() ).hide();
				temp.removeClassName('active');
			}
		});
		$('content-' + e.identify() ).show();
		e.addClassName('active');
		return false;
	}
	
});
