$(document).ready(function(){
    Cufon('#contenu h2', {fontWeight : 'bold'})('#contenu h3', {fontWeight : 'bold'})('h1', {fontWeight : 'bold'})('#slogan p', {fontWeight : 'bold'});
    $('#header ul#menu li:last-child a').css('background', 'none');
    $('.imagesBloc a').hover(function(){

        $(this).removeClass('fleche-right').addClass('fleche-left');
		//alert($(this).prev().addClas('tac'));
		$(this).prev().removeClass('tic').addClass('tac');
	}, function(){$(this).removeClass('fleche-left').addClass('fleche-right');$(this).prev().removeClass('tac').addClass('tic');});
	
	
	$("#column-right a img").each(function(){
		var href=$(this).attr('src');
		$(this).parent().attr('href', href)
	});
		
    $("#column-right a[rel=imagesInterne]").fancybox();	
	
	
});

