type="text/javascript">
			$(document).ready(function(){
				$(".column").sortable({
					connectWith: '.column',
					cursor: 'hand',
					handle: 'h3',
					opacity: 0.2,
					change: function(e, i) {
						// Post data back to server or update cookie	
					}
				});
				$(".widget").append('<div class="close"></div>');
				$(".close").click(function(){
					if ($(this).parent().data("collapsed")=="yes") {
						$(this).parent().data("collapsed","no");
						$(this).parent().animate({height:$(this).parent().data("height")});	
					} else {
						$(this).parent().data("height",$(this).parent().height());
						$(this).parent().data("collapsed","yes");
						$(this).parent().animate({height:25});
					}
				});
				
								   
			});
		
