function apply_cufon() {
	var cufon = new Array(
			// '.header h1',
			'.header h2',
			
			'.slide:visible .body h2',
			'.slide:visible .body p',
			
			'.slide .body .change_view:visible > span'
		);

	$.each(cufon, function(x, v) {
		var e = $(v);
		if( e.length > 0 ) {
			Cufon.replace( e, { hover: true } );
		}
	});
}
