$(document).ready(function(){
	$('#content .primary .section')
	.each(function(){
		$('.details', this)
		.toggle();
	})
	.live('click', function(){
		$('.details', this)
		.toggle();
	});
});