$(document).ready(function(){
	// Validate forms
	$("form").validate();
	
	// Initaiate Fancybox
	$('a[rel^="lightbox"], a[href*=".jpg"], a[href*=".gif"], a[href*=".png"]').fancybox();
	
	// Animate blurbs
	var i = 0;
	$('.blurb h3').each(function() {
		var identifier = "drawer-" + i;
		$(this).wrapInner('<a href=#' + identifier + '></a>');
		$(this).nextAll().wrapAll('<div class="drawer" id=' + identifier + '></div>');
		$(this).addClass('open').next().hide();
		i++;
	})
	.toggle(function() {
		$(this).toggleClass('open', 0).toggleClass('close').next().slideDown('slow');
	}, function() {
		$(this).toggleClass('close', 0).toggleClass('open').next().slideUp('slow');
	});
	
	// Experimental
	/*
	$('#footer .vcard a').click(function() {
		return false;
	});
	*/
});
