jQuery(document).ready(function(){
	jQuery('a[@href^="http://"]').not('a[@href*="http://'+location.host+'"]').addClass('external')
	jQuery('a[@href^="https://"]').not('a[@href^="https://'+location.host+'"]').addClass('https')	
	jQuery('a[@href^="mailto:"]').addClass('mailto')
	jQuery('a[@href^="ftp://"]').addClass('ftp')
	jQuery('a[@href^="irc://irc."]').addClass('irc')
	jQuery('a[@href^="news:"]').addClass('newsgroup')
	jQuery('a[@href$=".pdf"]').addClass('pdf')
	jQuery('a[@href$=".mp3"]').addClass('mp3')
})