function initCufon() {
	Cufon.replace('.main-content .title h2', { fontFamily: 'hvcb', hover: true });
  Cufon.replace('.main-content .discover-list-title a', { fontFamily: 'hvcb', hover: true });
	Cufon.replace('.main-content .title h4', { fontFamily: 'hvcb', hover: true });
	Cufon.replace('.main-content h3.heading', { fontFamily: 'hvcb', hover: true });
	Cufon.replace('h3#reply-title', { fontFamily: 'hvcb', hover: true });
	Cufon.replace('.photo-holder h3.heading', { fontFamily: 'hvcb', hover: true });
	Cufon.replace('.album-holder .title', { fontFamily: 'hvcb', hover: true });
	Cufon.replace('.explore-on-twit h3', { fontFamily: 'hvcb', hover: true });
	Cufon.replace('.footer-content h6', { fontFamily: 'gs', hover: true });
	Cufon.replace('.comment-form h4, .wpcf7 h4', { fontFamily: 'hvcb', hover: true });
  Cufon.replace('.content-adv .page-name', { fontFamily: 'hvcb', hover: true });
	Cufon.replace('.footer-nav', { fontFamily: 'hvcb', hover: true });
	Cufon.replace('.footer-subnav', { fontFamily: 'hvcb', hover: true });
}

jQuery(document).ready(function(){
	if (jQuery.browser.msie) {	
		if (parseInt(jQuery.browser.version) < 9) {		
			initCufon();
		}
	} else {
		initCufon();
	}
});

