
function collectionToggle(a){
	theDiv=	$(a).next();
	theDiv.toggle();
	if($(theDiv).visible()){
		$(a).select('img').first().src='/lib/icons/arrow_down.png';
	}else{
		$(a).select('img').first().src='/lib/icons/arrow_right.png';
	}

}