﻿$(function() {
	$(".sidebar .pod")
		.hover(function() { $(this).toggleClass("hover") }, function() { $(this).toggleClass("hover") })
		.click(function() { window.location = $(this).find("a.find-out-more").attr("href") });
});