$(document).ready(function(){

  $(".widget").draggable({containment: "#widgets",handle: ".title"});
  
  $("#map_arrow").click(function(){
  	$("#gmap").slideToggle("slow");
  });
  
  $("#weather_arrow").click(function() {
  	$("#weather").slideToggle("slow");  
  });
  
  $("#rss_arrow").click(function(){
  	$("#rss_data").slideToggle("slow");  
  });
  
  $("#notes_arrow").click(function(){
  	$("#notes").slideToggle("slow");	
  });
  
});
