$(document).ready(function(){

/* -- CONTROLA OVER DOS PROJECTS ------------------------------------------------------------------------------------------------------ */
$(".img_older a").hover(function(){
		$(this).parent().addClass("active");
		$(this).find("img").animate({opacity: .6}, 0);
	},
	function(){
		$(".img_older").removeClass("active");
		$(this).find("img").animate({opacity: 1}, 0);
	}
);

/* ----------------------------------------------------------------------------------------------------------------------------------- */


});














