$(document).ready(function() {
	
	$(".projectThumb a").hover(
		function () {
	    	//$(this).children('.overlay').show();
	    	$(this).children('.overlay').animate({left: '+=304', top: '+=213'}, 200, function() {
				$(this).children('table').fadeIn();
			});
	  	}, 
	  	function () {
	    	//$(this).children('.overlay').hide();
	    	$(this).children('.overlay').children('table').fadeOut(function() {
		    	$(this).parent('.overlay').animate({left: '-=304', top: '-=213'}, 200);
	    	});
	  	}
	);
	
	$(".projectThumb a .overlay").click(function(e) {
		newLink = $(this).parent().attr('href');
		window.location = newLink;
	});

	
});
