$(document).ready(function(){
	$('a.expand-html-button').click(function(event){
		event.preventDefault();
		if ( $(this).hasClass('link-details-open') )
		{
			$(this).parent().hide()
			$(this).parent().parent().next().show()
		}
		else
		{
			$(this).parent().parent().hide()
			$('div.clear', $(this).parent().parent().prev()).show()
		}
	});
})
