
// font replacement
Cufon.replace('h1.page', { color: '#ffffff' });
Cufon.replace('h1.post-header', { color: '#8cc63f', hover: { color: '#ffffff' } });
Cufon.replace('h1 #bio-title', { color: '#8cc63f' });
Cufon.replace('h2', { color: '#111111' });
Cufon.replace('h3, .bio-header', { color: '#999999' });
Cufon.replace('.bio-email-link', { color: '#8cc63f' });

$(document).ready(function(){
	
	// links with rel="external" will open in a new window
	$("a[rel=external]").click(function(){ window.open(this.href); return false; });

});


function teamBios()
{
	// check for social media icons; if none listed, hide the 'follow' header
	var social_icons = $('#icon-list li').length;
	if ( social_icons == 0 )
	{
		$('.follow-header').hide();
	}
}

