/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

var url;
var out;
var last;

/**
 * 
 */
function ajaxLoad(url, out){
    
    out = '#'+out;

    $.ajax({
        url: url,
        dataType: "script",
        success: function(data) {
            $(out).html(data);
            $(out).slideToggle('slow', function() {
                // Animation complete.
                });
        }
    });

}
