/*---------------------------------------------------------------------------*/
	
	$(document).ready(function() {
		// Fix IE6 and its stupid hover crap:
		if ($.browser.msie && $.browser.version == '6.0') {
			$('#header ul a').hover(function() {
				$(this).find('span').show();
			}, function() {
				$(this).not('.active').find('span').hide();
			});
		}
		
		// Open external links in a new window:
		$('a.external').click(function() {
			window.open($(this).attr('href'));
			
			return false;
		});
	});
	
/*---------------------------------------------------------------------------*/