(function($){
    $.fn.extend({
        eventbox: function(options) {
			var defaults = {};
            var options = $.extend(defaults, options);
            return this.each(function(){
                var obj = $(this);
				$('#eventBoxWeek',obj).click(function(){
					jQuery('#eventBoxList').html('Loading...');									  	
					$.post('ajax/eventbox.php',
					{type: 'week'},
					function(xml){
						jQuery('#eventBoxList').fadeTo(1000,0,function(){
							var html=jQuery(xml).find('tcmomevent').text();
							jQuery('#eventBoxList').html(html);
						}).fadeTo(1000,1);
					},
					'xml');	
					return false;
				});
				$('#eventBoxMonth',obj).click(function(){
					jQuery('#eventBoxList').html('Loading...');									  	
					$.post('ajax/eventbox.php',
					{type: 'month'},
					function(xml){
						jQuery('#eventBoxList').fadeTo(1000,0,function(){
							var html=jQuery(xml).find('tcmomevent').text();
							jQuery('#eventBoxList').html(html);
						}).fadeTo(1000,1);
					},
					'xml');	
					return false;
				});
            });
        }
    });
})(jQuery);