jQuery(document).ready(function(){
	jQuery(".blog .post .entry, .archive .post .entry, .search .post .entry, #related_posts ul li .thumb-content").hide();
	jQuery(".blog .post, .archive .post, .search .post").hover(function(){
		jQuery(this).find(".entry").animate({
			opacity: 0.9
		},200).fadeIn(300);					  
	},function(){
		jQuery(this).find(".entry").fadeOut(300);
	});
	jQuery("#related_posts ul li:last").addClass("no-margin");
	jQuery("#related_posts ul li").hover(function(){
		jQuery(this).find(".thumb-content").animate({
			opacity: 0.9
		},200).fadeIn(300);				  
	},function(){
		jQuery(this).find(".thumb-content").fadeOut(300);
	});
	jQuery(".blog .post .entry").click(function(){
		window.location=jQuery(this).find("h2 > a").attr("href");
		return false;
	});
	jQuery("#related_posts ul li").click(function(){
		window.location=jQuery(this).find("h3 > a").attr("href");
		return false;
	});
});