var SlideIn = new Class({
    Implements: [Options, Events],

    options: {
        'slideInElement': 'slideInBox',
        'slideInElementDownClass': 'hideme',
        'downClass': 'xoz-js-down'
    },

    initialize: function (element, options)
    {

        // default options
        this.setOptions(options);

        // save element
        this.element = $(element);

        this.slideInElement = $(this.options.slideInElement);
        
        if(this.slideInElement)
        {
        	this.element.addEvent('click', function(event)
	        {
	            new Event(event).stop();
		        this.slideInElement.removeClass(this.options.slideInElementDownClass);
	
	            return false;
	        }.bindWithEvent(this));
        }
    }
});