$(function() {/* make the external links work */	$('.imgLink').click(function(){		window.open(this.id);	});	$('.outboundLink').click(function(){		window.open(this.id);	});/* show additional achievements */	$('a.showAdditional').show();	$('.additionalAchievements').hide();		$('a.showAdditional').click(function() {		$('.additionalAchievements').slideToggle('slow');		$(this).html('Click here to Hide'); 		return false;	});/* Slideshow 					*/	$('.quotes').cycle({ 	    timeout:  9000, 	    speed:  1500	});	/* Overly on Homepage			*/	$("button[rel]").overlay(); /* Q and A - continued link		*/	$('a.cont').show();	$('div.continued').hide();		$('a.cont').click(function() {		$(this).prev('div.continued').slideToggle('slow');		return false;	});});
