/*
 * Images
 */

$(document).ready(function(){   
	$('#news dd').each(function () {
		$(this).hide();
	});
	
	$('#news dt a').each(function () {
		var title = $(this).attr('title');
		$(this).attr('title', title + ', Click to toggle');
	});
	
	$('#news dt a').toggle(function () {
		$(this).parent().next().slideDown();
		
		return false;
	},
	function () {
		$(this).parent().next().slideUp();
		
		return false;
	});
});
