$(document).ready(function(){
// Drop Down Menu
	$("#topNav, #leftNav")
		.superfish({
			animation : { opacity:"show"}
	});
	// Open .pdf, external links, and links with the class _blank into a new window
	jQuery(function(){
		jQuery("a[href$='.pdf'], a[href^='http://'], ._blank").click(function(){
			var newwindow = window.open(this.href, '_blank');
			newwindow.focus();
			return false;
		});
	});	
});