$(document).ready(function() {
	$("#recent-work article").hover(
	  function () {
	    $(this).children(".folio-details").fadeIn(150);
	  }, 
	  function () {
	    $(this).children(".folio-details").fadeOut(100);
	  }
	);
	
	$("#contact-modal-trigger").click( function() {
		$("#contact-modal").fadeIn(150);
	});
	
	$("#contact-modal-close").click( function() {
		$("#contact-modal").fadeOut(150);
	});	
});


