/**
 * This object will make the 'region-slide-down' element reveal
 *
 * @author Jeff Fohl.
 * @copyright (c) 2010 - Godengo, Inc.
 *
 * DEPENDENCIES:
 *  prototype.js
 *  effects.js
 **/ 

/* @global */

var RegionSlideDown = Class.create();

RegionSlideDown.prototype = {
	initialize: function() {
		Effect.BlindDown('region-slide-down', { duration: 1.0 });
	},
	
	closeDiv: function() {
		Effect.BlindUp('region-slide-down', { duration: 1.0 });
	}
}