$(document).ready(function(){

        $("#contact_form").validate();
        $("#comment_form").validate();

        // slide-down images on homepage
	$('.home #featuredWork li a').hover(function(){$(this).find('img').animate({top:'138px'},{queue:false,duration:500});
	}, function(){$(this).find('img').animate({top:'4px'},{queue:false,duration:500});
	});

});