jQuery(document).ready(function() {
	
	jQuery("p.pictureGallerie a").each(function(index) {				
			jQuery(this).css('cursor', 'pointer');
			jQuery(this).colorbox({
				width: '50%'
			});			
  	});
  		
});