﻿/// <reference path="jquery-1.3.2.min-vsdoc.js" />

$(document).ready(function() {

    $("a.High_Yield").click(function() {
        $.ajax({
            type: "GET",
            url: document.location.protocol + "//" + document.location.hostname + "/htmlfragment/highyieldlightbox",
            success: function(msg) {
                $('body').prepend(msg);
                $('#basic-modal-content').modal();
                setTimeout("$.modal.close();", 20000);
            },
            error: function(msg) {
                //alert("error: " + msg); //debug only
            }
        });
        return false;
    
    }); // click

}); // doc ready
