$(document).ready(function() { 
// Drop Down Menu
	$("#topNav, #leftNav")
		.superfish({
			animation : { opacity:"show"}
	});
	$('a.external').click(function(){
	window.open(this.href);
	return false;
    });	
});

