﻿$(function() {
    $('.ui-button').hover(
		function() {
		    $(this).addClass("ui-state-hover");
		},
		function() {
		    $(this).removeClass("ui-state-hover");
		}
	).mousedown(function() {
	    $(this).addClass("ui-state-active");
	})
	.mouseup(function() {
	    $(this).removeClass("ui-state-active");
	});

    var dlg = $("#dialog").dialog({
        bgiframe: true,
        resizable: false,
        modal: true,
        autoOpen: false,
        closeOnEscape: true,
        overlay: {
            backgroundColor: '#000',
            opacity: 0.5
        },
        width: 325,
        height: 160
    });

    dlg.parent().appendTo(jQuery("form:first"))

    $("#login-button").click(function() { $('#dialog').dialog('open'); $('#ctl00_TabsDivPlaceHolder_Home_txtUserName').focus(); });
    $("button, input:submit, a", ".btn").button();
});

