jQuery().ready(function(){
	jQuery('#subnav').Accordion({
		active: false,
		header: '.head',
		navigation: true,
		event: 'mouseover',
		autoheight: true,
		animated: 'easeslide'
	});

	$('a[@rel="external"]')
			.addClass('external')
			.click(function(){
				window.open(this.href); return false;
			});
});