if (window.jQuery && window.$) {
	$(document).ready(function(){
		$('a[rel=external], a.external').attr('target','_blank');
	});
	if ($('#audio').length > 0 && !/msie/i.test(navigator.userAgent)) {
		$('<embed/>')
			.attr('src','/static/mp3/vikinghorn64.mp3')
			.attr('autostart','true')
			.attr('controller','false')
			.attr('hidden','true')
			.appendTo('#audio');
	}
	if ($('a[rel=lightbox]').length > 0 && !/android|iphone|ipod|series60|symbian|windows ce|blackberry/i.test(navigator.userAgent) ) {
		$('<script/>')
			.attr('src','/static/js/slimbox2/slimbox2.js')
			.attr('type','text/javascript')
			.appendTo('body');
	}
	if ($('.ui-fader ul').length > 0) {
		$('<script/>')
			.attr('src','/static/js/jquery.innerfade.js')
			.attr('type','text/javascript')
			.appendTo('body');
	}
}
