$(document).ready(function() {
	//$('div.headline:first').find('h2 span').addClass('highlight');
	$('div.headline').click(function() {
		if($(this).next().is(':visible')) {
			$('div.details').slideUp('normal');
		} else {
			$('div.details').slideUp('normal');
			$(this).next().slideDown('normal');
		}
		$(this).find('h2 span').addClass('highlight');
		$(this).siblings().find('h2 span').removeClass('highlight');
	});
	$("div.details").hide();
	//$("div.details:first").show();
});