$(document).ready(function() {

  $('#parcours').masonry({
    singleMode: true,
    itemSelector: '.blocParcours'
  });


	/* ---- Fil d'ariane ---- */
	
	if ($('p#ariane').length){
		$('p#ariane').fadeTo(0, 0.6);
		$("p#ariane").mouseover(function(){
			$(this).fadeTo(0, 1);
	    }).mouseout(function(){
	    	$(this).fadeTo(0, 0.6);
	    });
	}

	/* ---- Liens externes ---- */

  $('a.externe').click(function(){
    window.open($(this).attr('href'));
    return false;
  });

	/* ---- FancyBox ---- */
	
	$("a.fancyGroup").fancybox({
		'hideOnContentClick': false,
		'overlayOpacity' : 0.6
	});
	
	/* ---- ToolTip ---- */
	
	$("a.tip").tooltip({
		bodyHandler: function() { 
      return $(this).children("span:first").html();
    },
		showURL: false
	});
	
	/* ---- Pagination (livres, projets) ---- */
	
	$('#pagination a').click(function(){
		$('#pagination a[class*="bold"]').removeClass('bold');
		$('.list2:visible').hide();
		$($(this).attr('href')).fadeIn();
		$(this).addClass('bold');
		$('html, body').animate({scrollTop:0}, 500);
		return false;
	});
	
	/* ---- Retour haut de page ---- */
	
	$('.goTop').click(function(){
		$('html, body').animate({scrollTop:0}, 500);
		return false;
	});
	
	/* ---- Antispam ---- */
	
	$('#formContact tr:first').hide();
	
	/* ---- Divers ---- */
	
	$('.hide').hide();
	
});
