$(document).ready(function() {
	var $image = $('div.content_latestnews_post_content_image');
	var $image_border = $('div.content_latestnews_post_content_image_border');
	
	$image.each(function() {
		$(this).css('margin-top', ($(this).height()-$(this).parent().height()) / 2 * -1 + 8);
	});
	
	$image_border.hover(
		function() {
			$(this).stop().animate({
				left: '2px',
				top: '2px',
				width: '230px',
				height: '146px'
			}, 200);
		},
		function() {
			$(this).stop().animate({
				left: '10px',
				top: '10px',
				width: '214px',
				height: '130px'
			}, 300);
		}
	);
});


