/*  (c) Interzone Multi Media : inline tip script
    dependencies : Jquery 1.3+ http://jquery.com
*/
 
// Load an external script via GET to a target div
    function load_ext_b(i, x){
        //$('#' + i).hide(); // hide the div
        //$('#' + i).css('display','none');
        $('#' + i).load(x, function (){ // load to it, on complete slide down
            $('#' + i).show();
        });
    }
// kill the parent id after sliding up
    function kill_parent(id){
        $("#"+id).closest('div').slideUp(250, function(){
            $("#"+id).closest('span').hide(); // added for webkit and clearing the html was no longer needed / IExploder working - WTF?
            $("#"+id).closest('div').empty();
            
        });
    }