function contactMe() {
	window.location = 'mailto:thomas.c.mathews@gmail.com';
	return false;
}

$(document).ready(function() {
	$('.box').hover(function() {
			$(this).children('.box-detail').slideDown();
		},
		function () {
			$(this).children('.box-detail').slideUp();
		}
	);
});
