function applyCufon() {
	var cufon = new Array(
		'.navi ul li a',

		'.footer .grid_12 p',
		'.footer .grid_12 ul li a',

		'.body.homepage h2 a',
		'.body.homepage h3 a',

		'.body.community h2',
		'.body.community h3 a',
		'.body.community h4',
		'.body.community .description p',
		'.body.community .description .grid_4 a',
		
		'.body.community .news h3',
		'.body.community .grid_12 p',
		'.body.community .grid_12 .tweet .meta',

		'.body.breadcrumbs h2',
		'.body.breadcrumbs ul li a',
		'.body.collection h4.shoe_name',
		
		'.about_header h2',
		'.about_header h3',
		'.about .inside h3',
		'.about .slide .grid_10 p',
		'.about .inside h2',
		'.about.lower-about-side h2',
		'.about.lower-about-side p',
		'.about .inside .text p',
		'.about .inside .text_contact',
		'.about_header h1',
		'.stores h1',
		'.stores h2',
		'.stores form label',
		'.stores #submit',
		'.mag_dates',
		
		// the colorbox
		'.product_name h2',
		'.product_description .purchase',
		'.product_description .stockists',
		'.product_description p',
		'.mag_things_forcolorbox',
		'.left_side p',
		'label',
		'.form_button',
		'.newsletter_head h2',
		'.newsletter_popup p',
		'.light',
		'.search_zip',
		'.dots',
		'.thoughts'
		
		
		
		
	);
	
	$.each(cufon, function(x, v) {
		var e = $(v);
		if( e ) {
			Cufon.replace( e, { hover: true } );
		}
	});
}

$(document).ready(function() {
	applyCufon();
});