// Document Ready
jQuery(document).ready( function()
{
	 // Drop Down Menu
    jQuery("#top-nav")
        .superfish({
            animation : { opacity:"show"}
    });
	// side Menu
    jQuery("#left-nav")
        .superfish({
            animation : { opacity:"show"}
    });

	
	jQuery(document).pngFix( );




	//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;
		});
	});

});



