jQuery(document).ready(function() {
	jQuery('a[rel="external"]').click( function() {
		window.open($(this).attr('href') );
		return false;
	});
	jQuery("ul#menu span").css("opacity","0");
	jQuery("ul#menu span").hover(function () {
		jQuery(this).stop().animate({
			opacity: 1
		}, "slow");
	},
	function () {
		jQuery(this).stop().animate({
			opacity: 0
		}, "slow");
	});
});

