/**
 * cufon utility
 *
*/

function cufonReplace()
{
	Cufon.replace('ul#page_nav li ul li a, div.blog_article h2, div.blog_article h3, div.blog_articles h2, div.content_highlight h2, div.content_highlight h3', {
		fontFamily: 'Gotham Book',
		hover: true
	});

	Cufon.replace('ul.artists_genre li.genre h4, ul.speakers_topic li.topic h4, h2.modal_title', {
		fontFamily: 'Gotham Book'
	});
	
	Cufon.replace('ul.tabbed_pane li.tabs ul li a, div.speaker_detail a.speaker_name, div.venue_detail a.venue_name, div.event_detail a.event_name, div.artist_detail a.artist_name, table th, table td.row_heading', {
		fontFamily: 'Gotham Medium',
		hover: true
	});
}

// run the replacement
$(document).ready(function () 
{
    cufonReplace();
});

