$(function(){
	
	// Cufon
	Cufon.replace('#home #content h3', { fontFamily: 'Gotham' });
	Cufon.replace('.content_page #content_main h2 strong', { fontFamily: 'Helvetica' });
	Cufon.replace('.content_page #content_secondary h3', { fontFamily: 'Gotham' });
	Cufon.replace('#intro_text', { fontFamily: 'Helvetica' });
	Cufon.replace('#products_overview #content_main ol li h4, #products_overview #content_main ol li p', { fontFamily: 'Gotham' });
						   
	// Equalize column heights in Content Pages
	$('.content_page #content_secondary, .content_page #content_main').equalizecols();
	
	// Adds class of 'odd' to all odd table rows
	$('tr:odd').addClass('odd');
	
});