﻿$(document).ready(function(){

    var $container = $('#patchwork');

    $container.imagesLoaded( function(){
	    $container.masonry({
	      itemSelector : '.image'		  
	    });
      
	    
    });
	
    $('a[rel=banner]', $container).colorbox({
            photo: true,
      	    current: "image {current} sur {total}"
    });
  
    //$('#patchwork img').captify({});
    $('#patchwork img').jcaption({
      animate: true,
          show: {height: 'toggle'},
          hide: {height: 'toggle'}
    });
});


