	$(document).ready(function(){
		//CODE
		$(".entryPath").hover(
			function() {
				//HOVER IN
				$(this).prepend('<div class="entryHover"></div>');
				$(".entryHover", this).hide();
				$(".entryHover", this).fadeIn();
			},
			function() {
				//HOVER OUT
				$(".entryHover", this).fadeOut( function() {
						$(this).remove();
				});
		});
		
		//USES THE HREF FROM THE LINK INSIDE THE ENTRY DIVs
		$(".entryPath").click(function () {
			window.location = $("h2 a", this).attr("href");
		});
	});