/*
 * Do the Cufon replacing first.
 */
Cufon.replace('#maincontent h1, h2, h3, h4', {fontFamily: 'Myriad Pro'});

Cufon.replace('.avenir, .legend', {
	fontFamily: 'Avenir',
	textShadow: '-1px -1px rgba(51, 51, 51, 0.6)'
});
		
$(function(){	
	/*
	 * Open link with class 'external' in new window
	 */ 
	$('a.external').click( function(){
		window.open( this.href );
		return false;
	});	
});
