$(document).ready(function() {
	
	$("#showcase li").hover(function() {
		  $(this).find(".thumb").animate({opacity: "1.0"}, "fast");
		  $(this).find(".title a").animate({opacity: "show"}, "slow");
		  $(this).find(".comments").animate({opacity: "show", top: "-5"}, "fast");
	 	  $(this).find(".rating").animate({opacity: "show"}, "fast");
		}, function() {
		  $(this).find(".title a").animate({opacity: "hide"}, "fast");
		  $(this).find(".thumb").animate({opacity: "0.9"}, "fast");
	 	  $(this).find(".comments").animate({opacity: "hide", top: "-10"}, "fast");
		  $(this).find(".rating").animate({opacity: "hide"}, "fast");
		});
		
	$("#footer .col1").hover(function() {
		  $(this).find(".col-content").animate({opacity: "show", top: "10"}, "fast");
		}, function() {
	 	  $(this).find(".col-content").animate({opacity: "hide", top: "-10"}, "fast");
	});
	$("#footer .col2").hover(function() {
		  $(this).find(".col-content").animate({opacity: "show", top: "10"}, "fast");
		}, function() {
	 	  $(this).find(".col-content").animate({opacity: "hide", top: "-10"}, "fast");
	});
	$("#footer .col3").hover(function() {
		  $(this).find(".col-content").animate({opacity: "show", top: "10"}, "fast");
		}, function() {
	 	  $(this).find(".col-content").animate({opacity: "hide", top: "-10"}, "fast");
	});
	
	$('a[rel="external"]').attr('target', '_blank');
	
});