var myrules = {
    '#plan-your-education-link' : function(element){
	    element.onclick = function(){
            $('advance-your-career').hide();
            $('grow-your-business').hide();
            new Effect.toggle('plan-your-education', 'Slide', {duration: 0.3});
	    }
    },
    '#advance-your-career-link' : function(element){
	    element.onclick = function(){
            $('plan-your-education').hide();
            $('grow-your-business').hide();
            new Effect.toggle('advance-your-career', 'Slide', {duration: 0.3});
	    }
    },
    '#grow-your-business-link' : function(element){
	    element.onclick = function(){
            $('advance-your-career').hide();
            $('plan-your-education').hide();
            new Effect.toggle('grow-your-business', 'Slide', {duration: 0.3});
	    }
    },
    '.take-assessment-button' : function(element){
	    element.onclick = function(){
            return logoutReminder();
	    }
    }
};

Behaviour.register(myrules);

// My window onload event
Behaviour.addLoadEvent(function() {
    if($('plan-your-education')) {
        $$('#plan-your-education',
           '#advance-your-career',
           '#grow-your-business'
        ).invoke('hide');
    }
}); 