$(document).ready(function() {
	$('.collapse').hide();
	$('.toggle.show').show();
});

$('div.toggle > a').click(function(){
	$(this).parent('.toggle').parent('.infobox').children('.collapse').toggle(100);
	$(this).parent('.toggle').parent('.infobox').children('.toggle.show').toggle();
	$(this).parent('.toggle').parent('.infobox').children('.toggle.hide').toggle();
	return false;
});


