// JavaScript Document

jQuery(document).ready( function(){
	jQuery("ul.sf-menu")
		.superfish({
			animation : { opacity:"show"}
	});	
	//open a new window with class "_blank"
	jQuery(function(){
		jQuery("a[href$='.pdf'], .external").click(function(){
			var newwindow = window.open(this.href, 'external');
			newwindow.focus();
			return false;
		});
	});

});