function applyCufon() {
	var cufon = new Array(
		'.header .nav ul li a',
		'.orange_boxes .boxes .name',
		'.container_12 .grid_8 .cycle_container .cycle_text .caption',
		'h2',
		'.products .product a',
		'.featured_item .description a',
		'.price',
		'.products .product price',
		'.right_body .surf_report .location',
		'.fitguide span',
		'.join',
		'.form p',
		'.popup_nav li a',
		'.cart_shirt_names',
		'.purchase',
		'.newsletter .form p.span2',
		'.title',
		'.olanewsletter',
		'.home_title',
		'.text_contact',
		'h3', 
		'.sub',
		'.lookbook_season li',
		'.shop_cat a',
		'.products .product .price .cross',
		'.location'
		);
	
	$.each(cufon, function(x, v) {
		var e = $(v);
		if( e ) {
			Cufon.replace( e, { hover: true } );
		}
	});
}

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