$.fn.dropdown = function() {
	$(this).hover(function(){
		$(this).addClass("hover");
		$('.submenu',this).fadeIn();
	},function(){
		$(this).removeClass("hover");
		$('.submenu',this).fadeOut();
	});
};

$(function(){
	$('a.external').click(function(e) {
		e.preventDefault();
		window.open($(this).attr('href'));
	});

	$("#nav > li").dropdown();
});

