Spry.Widget.CollapsiblePanel.prototype.toggle = function()
{
	if (!this.contentIsOpen){
		return this.open();
	}
	else{
		return this.close();
	}
	 
};
