jQuery(document).ready(function($) {
	var maxHeight = (-1 * $('.news_events').height()) + $('div.events_content').height();
									
	$('.events_down').hover(function() {
		$('.news_events').animate({marginTop: maxHeight}, 5000);
	}, function() {
		$('.news_events').stop();
	});

	$('.events_up').hover(function() {
		$('.news_events').animate({marginTop: 0}, 5000);
	}, function() {
		$('.news_events').stop();
	});
});

