function buildDialog(){
		$(document).ready(function()
		{
			$('#dialog').Draggable(
					{
						zIndex: 	20,
						ghosting:	false,
						opacity: 	0.7,
						handle:	'#dialog_move'
					}
				);	
			$("#dialog").hide();
						
			$('#preferences').click(function()
			{
				$("#dialog").show("fast");
			});
			
			$('#dialog_close').click(function()
			{
				$("#dialog").hide("fast");
			});
});
}