jQuery(document).ready(function($){

	$("div.featured-post h2").hide();
	$("div.featured-post p.post-info").hide();
	
	$("div#featured-1").hover(
		function () {
			$("div#featured-1 h2").show("fast");
			$("div#featured-1 p.post-info").fadeIn("slow");
	    },
		function () {
			$("div#featured-1 h2").hide("fast");
			$("div#featured-1 p.post-info").fadeOut("fast");
		}
	);
	
	$("div#featured-2").hover(
		function () {
	    	$("div#featured-2 h2").show("fast");
			$("div#featured-2 p.post-info").fadeIn("slow");
	    },
		function () {
			$("div#featured-2 h2").hide("fast");
			$("div#featured-2 p.post-info").fadeOut("fast");
		}
	);

});

