$(function() {

	$('dl.newsInformation dd ul').css({ "display" : "none"});

	$("dl.newsInformation").each(function(){
		var postfix ='-over';
		var originalSrc = $("dl.newsInformation > dd.more img").attr('src');
		var rolloverSrc = originalSrc.replace(/(\.gif|\.jpg|\.png)$/, postfix +"$1");

		$("dl.newsInformation > dd.more img").toggle(function(){						   
			$("dl.newsInformation > dd.more img").attr({ src: rolloverSrc});
			if (typeof document.body.style.maxHeight != "undefined") { 
				$( "dl.newsInformation > dd ul").slideDown(200);
			} else { 
				$( "dl.newsInformation > dd ul").fadeIn(200);
			} 

		},function(){
			$("dl.newsInformation > dd.more img").attr({ src: originalSrc});
			if (typeof document.body.style.maxHeight != "undefined") { 
				$( "dl.newsInformation > dd ul").slideUp(200);
			} else { 
				$( "dl.newsInformation > dd ul").fadeOut(200);
			} 


		});
	});

});
