$(document).ready(function() {
	$("form").validate();
	
	// Animate blurbs
	var i = 0;
	$('#open-hours h3').each(function() {
		var identifier = "drawer-" + i;
		$(this).wrapInner('<a href=#' + identifier + '></a>');
		$(this).next().wrap('<div class="drawer" id=' + identifier + '></div>');
		$(this).addClass('open').next().hide();
		i++;
	})
	.toggle(function() {
		$(this).toggleClass('open', 0).toggleClass('close').next().slideDown();
	}, function() {
		$(this).toggleClass('close', 0).toggleClass('open').next().slideUp();
	});
})
