// Base JS

$(document).ready(function() {

	$('.thumbnail').hover(
		function () {
			$(this).closest('.thumb').find('.title').fadeIn(50);
	
		}, 
		function () {
			$(this).closest('.thumb').find('.title').fadeOut(200);
		}
	);

	$('ul.feeds img').hover(
		function () {
			$(this).animate({'opacity':'.7'},200);
		}, 
		function () {
			$(this).animate({'opacity':'.3'},200);
		}
	);

});



