$(document).ready(function() {
	// twitter feed (http://tweet.seaofclouds.com)
	$(".tweet").tweet({
		username: "benwellby",
		count: 3,
		template: "{time} {text}",
		loading_text: "Loading tweets..."
	});
	
	// thumb hover
	$('.thumb-hover').hover(function() {
		$(this).find('div.overlay').stop(false,true).fadeIn(200);
	},
	function() {
		$(this).find('div.overlay').stop(false,true).fadeOut(200);
	});
	
	/*
$('.thumb-hover').live('touchend', function(e) {
		var el = $(this);
		var link = el.attr('href');
		window.location = link;
	});
*/

});
