// JavaScript Document

// Opening up links in a new window
$(document).ready(function(){ 
    $('a.external').click(function(){
        window.open(this.href);
        return false;
    });
// Top Navigation and Drop Downs using SuperFish
    $("#top-nav")
        .superfish({
            animation : { opacity:"show"}
    });	
});
