$(function() {
	$(".circle_prj, .parallel_prj").hover(
		function() {
			$(".img_hover", this).fadeIn( 500 );
		},
		function() {
			$(".img_hover", this).fadeOut( 500 );
		}
	);
});


