function showRegistrationConfirmation() {
	// Popup modal dialog and attach to it's continue button the opening of the new page.
	$('#dlgRegistrationConfirmation').jqm({
		modal: true,
		closeClass: false,
		overlayClass: "dlgBackground",
		onShow: function (h) {
			h.w.css('opacity', 0.99).fadeIn('slow');
		},
		onHide: function (h) {
			h.w.fadeOut('slow', function () {
				if (h.o) h.o.remove();
			})
		}
	}).jqmShow().jqDrag('#dlgRegistrationConfirmationTitle');
}

$(document).ready(function () {
	$('#jsddm > li').bind('mouseover', jsddm_open);
	$('#jsddm > li').bind('mouseout', jsddm_timer);
});

document.onclick = jsddm_close;

var timeout = 500;
var closetimer = 0;
var ddmenuitem = 0;

function jsddm_open() {
	jsddm_canceltimer();
	jsddm_close();
	ddmenuitem = $(this).find('ul').eq(0).css('visibility', 'visible');
}
function jsddm_close() {
	if (ddmenuitem) ddmenuitem.css('visibility', 'hidden');
}
function jsddm_timer() {
	closetimer = window.setTimeout(jsddm_close, timeout);
}
function jsddm_canceltimer() {
	if (closetimer) {
		window.clearTimeout(closetimer);
		closetimer = null;
	}
}