function externalLinks() {
	$('a[rel*=external]').click(function() {
		window.open(this.href);
		return false;
	});
	$('area[rel*=external]').click(function() {
		window.open(this.href);
		return false;
	});
}
$(document).ready(function() {
	var t = 350;
	externalLinks();
	$('.menu>ul>li>ul').hide();
	$('.menu>ul>li').click(function() {
		if ($('.menu ul:animated').size()==0) {
			$head = $(this);
			$exSibs = $head.siblings().find('ul:visible');
			if ($exSibs.size()>0) {
				$exSibs.slideUp(t);
				setTimeout(function() {
					$exSibs.stop(true, true).hide();
				},(t-100));
				setTimeout(function() {
					$head.find('ul:hidden').slideDown(t);
				},t);
			} else {
				$head.find('ul:hidden').slideDown(t);
			}
		}
	});
});

