$(function(){
$('#news1').hover(
		function(){
			$('#news1 .post_image').fadeOut(100, function(){
				$('#news1 .post_body').fadeIn(100);						 
			});
		},
		function(){
			$('#news1 .post_body').fadeOut(100, function(){
				$('#news1 .post_image').fadeIn(500);						 
			});
		}
		);
$('#news2').hover(
		function(){
			$('#news2 .post_image').fadeOut(100, function(){
				$('#news2 .post_body').fadeIn(100);						 
			});
		},
		function(){
			$('#news2 .post_body').fadeOut(100, function(){
				$('#news2 .post_image').fadeIn(500);						 
			});
		}
		);
$('#news3').hover(
		function(){
			$('#news3 .post_image').fadeOut(100, function(){
				$('#news3 .post_body').fadeIn(100);						 
			});
		},
		function(){
			$('#news3 .post_body').fadeOut(100, function(){
				$('#news3 .post_image').fadeIn(500);						 
			});
		}
		);
$('#news4').hover(
		function(){
			$('#news4 .post_image').fadeOut(100, function(){
				$('#news4 .post_body').fadeIn(100);						 
			});
		},
		function(){
			$('#news4 .post_body').fadeOut(100, function(){
				$('#news4 .post_image').fadeIn(500);						 
			});
		}
		);
$('#news5').hover(
		function(){
			$('#news5 .post_image').fadeOut(100, function(){
				$('#news5 .post_body').fadeIn(100);						 
			});
		},
		function(){
			$('#news5 .post_body').fadeOut(100, function(){
				$('#news5 .post_image').fadeIn(500);						 
			});
		}
		);
$('#news6').hover(
		function(){
			$('#news6 .post_image').fadeOut(100, function(){
				$('#news6 .post_body').fadeIn(100);						 
			});
		},
		function(){
			$('#news6 .post_body').fadeOut(100, function(){
				$('#news6 .post_image').fadeIn(500);						 
			});
		}
		);

});
