// GLENNFELLOWS - 2010

$(document).ready(function(){
	
	$("#contactform").validate();

	$(".toggleContent").hide();
	
	
	$(".metainfo").css("opacity","0");
	 
	 $("#portfolioGallery li a:not(.external)").click(function() {
	 	$(this).parent().children('.metainfo').stop().animate({ opacity: 1.0 }, "slow");
	 	return false;
	 });

	$("h3.trigger").click(function(){
		$(this).toggleClass("active").next().slideToggle("fast");
	});
	
	
});

