$( init );
 
function init() {
	$('#your-question-title').bind( 'click', collapse );
	$("#other-blocks > div:even").css("margin-right", "13px");
}

function expand() {
	$("#block-views-your_question-block_1 .view-content").show('slow');
	$(this).unbind();
	$(this).bind( 'click', collapse );
}

function collapse() {
	$("#block-views-your_question-block_1 .view-content").hide('slow');
	$(this).unbind();
	$(this).bind( 'click', expand );
}

