/* Foundation v2.1.4 http://foundation.zurb.com */
$(document).ready(function () {

	/* Use this js doc for all application specific JS */

	/* ORBIT --------------------------------- */
	$('#featured-gallery').orbit({
		animation: 'fade',
		directionalNav: false
	});

	/* ALERT BOXES ------------ */
	$(".alert-box").delegate("a.close", "click", function(event) {
    event.preventDefault();
	  $(this).closest(".alert-box").fadeOut(function(event){
	    $(this).remove();
	  });
	});

	/* FANCYBOX ------------ */
	$(".fancybox").fancybox();

});

