/* Add class blank to pdf, doc and external links, and open class blank in a new window
-------------------------------------------------------------------------------------------------*/

$(function() {
	$('a[href$=.pdf]').add('a[href$=.doc]').add('a[href^=http://]').addClass('blank');
	$('a[href^=http://e1.simplecdn.net]').removeClass('blank');
	$('a.blank').click(function(){ window.open(this.href); return false; });
});



/* Suckerfish jQuery drowndown menu 
-------------------------------------------------------------------------------------------------*/

$(document).ready(function() { 
	$('ul#nav').superfish({ 
			delay:       500,                             // .5 second delay on mouseout 
			animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
			speed:       'fast',                          // faster animation speed 
			autoArrows:  false,                           // disable generation of arrow mark-up 
			dropShadows: false                            // disable drop shadows 
	}); 
});
