﻿var $j = jQuery.noConflict();

$j(document).ready(function() {
    $j(".hoverdisplay").removeClass("hoverdisplay");

    $j(".loan").click(function() {
        $j(".information").fadeOut("def");
        $j(this).children(".information").fadeIn("def");
    });

    $j(".information input").click(function() {
        $j(this).parent().parent().parent().fadeOut("def");
        return false;
    });

});