$(document).ready(function(){

	$('#button').hover(function() {
	$(".popout").show("fast");
  	});
	
	$('#button').mouseout(function() {
	$(".popout").hide("fast");
  	});
	
	$("#draggable").draggable();
    });
	
	
