﻿var $j = jQuery.noConflict();
function show_form() {
    $j("#login-form").animate({ height: 240 }, "fast")

}

function hide_form() {
    $j("#login-form").animate({ height: 0 }, "fast")
}