$(document).ready(function(){
	//Blog Overlays
	$('.blog-entry').hover(
		function () {
			$(this).children('div').fadeIn(200);
		}, 
		function () {
			$(this).children('div').fadeOut(200);
		}
	);
});
