var Widget = {
	url: CalcunConfig.basePath + 'Plugins/Sidebox/index.php',
	
	close: function(widgetId) {
		$('.widget-action-' + widgetId).each(function() {
			$(this).removeClass('widget-action-current');	
		});
		$('#widget-action-close-'+widgetId).addClass('widget-action-current');
		$('#widget_'+widgetId).slideUp('fast', function() {
			Widget.getContent(widgetId, 0);
		});
	},
	
	half: function(widgetId) {
		$('.widget-action-' + widgetId).each(function() {
			$(this).removeClass('widget-action-current');	
		});
		$('#widget-action-half-'+widgetId).addClass('widget-action-current');
		$('#widget_'+widgetId).slideUp('fast', function() {
			Widget.getContent(widgetId, 1);
		});
	},
	
	full: function(widgetId) {
		$('.widget-action-' + widgetId).each(function() {
			$(this).removeClass('widget-action-current');	
		});
		$('#widget-action-full-'+widgetId).addClass('widget-action-current');
		$('#widget_'+widgetId).slideUp('fast', function() {
			Widget.getContent(widgetId, 2);
		});
	},
	
	getContent: function(widgetId, state) {
		$.ajax({ url: Widget.url,
				data: {
					view: 'ajaxBox',
					state: state,
					widgetId: widgetId
				},
				dataType: 'json',
				success: function(data) {
					if(data.result == 'ok') {
						$('#widget_'+widgetId).empty().append(data.content);
						$('#widget_'+widgetId).slideDown('normal');
						
					}
		}});
	}
};
