$(document).ready(function() {
//    $("dd").hide();
//    $("#expand a").toggle(function() {
//        $(this).parent().next().slideDown("slow");
//        return false;
//    }, function() {
//        $(this).parent().next().slideUp("slow");
//        return false;
//    });
    if($.browser.msie) {
        DD_roundies.addRule('#content-login', 10);
    } else {
        $('#content-login').corner();
    }

    var validator = $("#login").bind("invalid-form.validate",
        function() {
                $("#msg").html("Debe completar todos lo campos requeridos");
                $("#msg").attr("class", "msg fail");
            }).validate({
                errorPlacement: function(error, element) {
                },
                submitHandler: function(form) {
                    form.submit();
                },
                success: function(label) {
                }
            });
//    var opts = {
//      left: 3,
//      top: 4,
//      blur: 4,
//      opacity: 0.2
//    };
//    $("#container").dropShadow(opts);
});
