// cufon config
function initCufon() {
	Cufon.replace('#tagline span', { fontFamily: 'MyriadPro'});
	Cufon.replace('#nav .title h2', { fontFamily: 'CenturyGothic'});
	Cufon.replace('#nav .onglet', { fontFamily: 'CenturyGothic', hover: true});
	Cufon.replace('#nav .ssmenu .text', { fontFamily: 'CenturyGothic', hover: true});
	Cufon.replace('#news h2', { fontFamily: 'CenturyGothic'});
	Cufon.replace('#newsUne h3', { fontFamily: 'CenturyGothic'});
	Cufon.replace('#news .column h3', { fontFamily: 'CenturyGothic'});
	Cufon.replace('#video .title h2', { fontFamily: 'CenturyGothic'});
	Cufon.replace('#candidats a', { fontFamily: 'CenturyGothic', hover: true});
	Cufon.replace('.box1 h3', { fontFamily: 'CenturyGothic'});
}
/*--- IE6 hover ---*/
function ieHover(h_list){
	if($.browser.msie && $.browser.version < 7){
		$(h_list).hover(function(){
			$(this).addClass('hover');
		}, function(){
			$(this).removeClass('hover');
		});
	}
}
$(function() {
	initCufon();
	ieHover('.ssmenu li');
});


