$(document).ready(function(){

		/* Galleria */
		Galleria.loadTheme('../wp-content/themes/bristol27/js/themes/classic/galleria.classic.min.js');
		
		$('#galleria').galleria({
			thumb_quality: false,
			thumb_quality: false,
			transition: 'fade',
	        width: 780,
	        height: 500
	    });
		


		$("h4").each(function(){
			//read the first word in the h4
			var firstWord = $(this).text().substring(0,$(this).text().indexOf(' ', 0));
			
			//prepend anchor element before h4
			$(this).prepend("<a name='"+firstWord+"'></a>");

      	});
      	
      	/* FancyBox  */	
		$('.size-medium').parent().fancybox();
		
	});
	
	

