/**
 * Init the class
 */
var foldable = new Object();

/**
 * Define the functions
 */
foldable.toggle = function(id) {
	jQuery('#foldable-' + id).toggle('fast');
}

foldable.init = function() {
	jQuery('.wdf-foldable-area').hide();
}

/**
 * Init everything!
 */
jQuery(document).ready(
	function() { foldable.init(); }
);