$(document).ready(function(){
	$("a#login").click(function () { 
		$("#dialog").dialog({
			bgiframe: true,
			height: 250,
			width: 400,
			modal: true,
			resizable: false,
			draggable: false,
			hide: 'slide',
			show: 'slide',
			close: function(ev, ui) { $(this).dialog("destroy"); } 
		});
	});
});
