//jQuery(document).ready(function(){
//	jQuery('a.external').click(function(){
//        window.open(this.href);
//        return false;
//    });               
//});

$(document).ready(function(){
$('a.external').click(function(){

        window.open(this.href);

        return false;

    });

	$("ul.sf-menu")
		.superfish({
			animation : { opacity:"show"}
	});

});
