
	 $(document).ready(function(){
		$(".projectFrameTop").hover(
		  function () {
		     $(this).animate({ opacity: 0, }, 100);
		  },
		  function () {
		     $(this).animate({ opacity: 1, }, 150);
		  }	  
		);
	 });

