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

	$("#slides,#slides2").responsiveSlides({
	  speed: 6000, //Integer: How long one image shows before fading to next, in milliseconds
	  fade: 1000, //Integer: Crossfade, in milliseconds
	  auto: true, //Boolean: Animate automatically? if 'false', pagination is created automatically
	  maxwidth: 350 //Integer: Max-width of the Slideshow + images, in pixels
	});

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


});

