
		var aSpeed = 300;
		$(document).ready(function(){
			
			// NEWS
			$('#newsitems li').hover(function(){
				var t = this;
				$(this).parent().find('li').each(function(){
					if(this!=t){
						$(this).find('div > div').slideUp();
					}else{
						$(this).find('div > div').slideDown();
					}
				});
				
			},function(){
			});
			
			$('#newsitems li:not(:first) > div > div').stop().slideUp();
			$('#newsitems li:first > div > div').slideDown();
		});