$(document).ready(function() {

	$("#nav ul li").not("#nav ul li.selected").not("#nav ul li.first").hover(
		function () {
			$(this).toggleClass('selected');
		},
		function () {
			$(this).toggleClass('selected');
		}
	);

	// Open links with rel="external" in new window
	$('a[rel=external]').click(function(e){
		e.preventDefault();
		window.open($(this).attr('href'));
	});

});

