$(document).ready(function() { 

// New window opener
	$('a.external').click(function(){
    	window.open(this.href);
    	return false;
    });

// Superfish initialize
    $('ul#navigation').superfish({
    	speed:			1,
    	delay:			400,
    	autoArrows: 	false,
    	dropShadows:	false
    }).find('ul').bgIframe({opacity:false}); 

// Galleriffic initialize
	var gallery = $('#gallery-content').galleriffic('#gallery-thumbs', {
		imageContainerSel:      '#gallery-slideshow',
		controlsContainerSel:   '#gallery-controls',
		captionContainerSel:    '#gallery-caption',
		renderSSControls:       false
	});

// Hide full text of speeches
// Hides the divs as soon as the DOM is ready
// (a little sooner than page load)
	$('.hidden-text').hide();
	
// Toggles an image on clicking the link 
	$('a#milken-toggler').click(function() {
		$('#milken-hidden').slideToggle(600);
		return false;
	});
	
// Sets up Lightbox for image thumbnails
	$('.photo-gallery a.thumb').lightBox();
	
});