// Document Ready
jQuery(document).ready( function()
{
	
//open a new window with class "external"
jQuery('a.external').click(function(){
	window.open(this.href);
	return false;
});

// Drop down menu

jQuery("ul.sf-menu")
	.superfish({
		animation : { opacity:"show"}
});
	
	});


