$(document).ready(function(){
	initCufon();
	cufonRefresh('ul.menu2 > li');
});
function initCufon() {
	Cufon.replace('#content .heading h1', { fontFamily: 'Gotham', hover: true });
	Cufon.replace('ul.menu2 > li > a', { fontFamily: 'Gotham', hover: true });
	Cufon.replace('#slidesh div span h3', { fontFamily: 'Gotham Light Italic' });
    Cufon.replace('#slidesh div span h2', { fontFamily: 'Gotham' });
	Cufon.replace('#slidesh div span h6', { fontFamily: 'Gotham' });

}
function cufonRefresh(_el) {
 $(_el).mouseenter(function() {
  $(this).addClass('hover');
 }).mouseleave(function() {
  $(this).removeClass('hover');
  setTimeout(function(){Cufon.refresh(_el + ' > a')}, 10);
 });
}
