/************************************************************

	Title: 	Scripts regarding YAN homepage
	Desc:	Provides functionality for Fellowshiop dropdown
					
************************************************************/

var YouthActionNet = {

	init: function(){
		this.getElements();
		this.createFellowshipDropDown();
	},
//-------------------------------------------------------->	 	
	getElements: function(){
		//fellowship elements
		this.fellowship_but = $('fellowship_top');
		this.fellowship_content = $('fellowshipContent');
	},
//-------------------------------------------------------->	 
	createFellowshipDropDown: function(){
		this.slider = new Fx.Slide(this.fellowship_content);
		this.slider.hide();
		this.fellowship_but.addEvent('mouseover', function(el){
				this.slider.show();
			}.bind(this));
		
		this.fellowship_content.addEvent('mouseover', function(el){
				this.slider.show();
			}.bind(this));
	}
};

//onDomReady
window.onDomReady(YouthActionNet.init.bind(YouthActionNet));

//onLoad
//window.onLoad(YouthActionNet.init.bind(YouthActionNet));
