$(function() {
	// The sliding mast
	$('#showMast').click(function() {
		$('#mast').slideToggle('medium');
	});
	// Opens links to external sites in a new window
	$('a[href^="http://"]')
	  .attr({
		target: "_blank", 
		title: "Opens in a new window"
	  });
});