//load subcontents

jQuery(document).ready(function(){
    jQuery.getJSON("/shared/json/edge_labs_blog.json", function(data){
        jQuery.each(data.item, function(i,item){
            jQuery("#infomation").append('<dl><dt><a href="' + item.link + '" target="_blank">' + item.title + '</a></dt>' + '<dd>' + item.description + '</dd></dl>');
            if ( i == 2 ) return false;
        });
    });
});



/*
jQuery(document).ready(function(){
    jQuery.getJSON("/shared/json/edge_labs_wiki.json", function(data){
        jQuery.each(data.item, function(i,item){
            jQuery("#projectSearch").append('<dl><dt><a href="' + item.link + '" target="_blank">' + item.title + '</a></dt>' + '<dd>' + item.link + '</dd></dl>');
            jQuery("<a/>").attr("href", item.link).appendTo("#wikis").html(item.title);
            if ( i == 2 ) return false;
        });
    });
});
*/
