$(document).ready(function() {
	$('.widget').each(function() {
		var widgetBox = $(this);
		widgetBox.find('.moveDown').click(function(e) {
			e.preventDefault();
			var widgetContentList = widgetBox.find('.widgetContentList');
			var boxHeight = widgetBox.find('.widgetContentListContainer').height();
			var maxMargin = 0;
			widgetBox.find('li').each(function() {
				maxMargin += $(this).height();
			});
			maxMargin -= boxHeight;
			if ( parseInt(widgetContentList.css('marginTop').replace('px','')) >= maxMargin * -1 )
				widgetContentList.animate({ 'marginTop': '-='+boxHeight+'px' }, 'fast', 'swing');
		});
		widgetBox.find('.moveUp').click(function(e) {
			e.preventDefault();
			var widgetContentList = widgetBox.find('.widgetContentList');
			var boxHeight = widgetBox.find('.widgetContentListContainer').height();
			var maxMargin = 0;
			widgetBox.find('li').each(function() {
				maxMargin += $(this).height();
			});
			maxMargin -= boxHeight;
			if ( parseInt(widgetContentList.css('marginTop').replace('px','')) < 0 )
				widgetContentList.animate({ 'marginTop': '+='+boxHeight+'px' }, 'fast', 'swing');
		});
	});
});
