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