function loadWidget(json, column, target) {
	$.getJSON(json, function(json) {
    targetContainer   = "#"+column+" #"+target;
    targetContent     = targetContainer+" .widget-content";
    targetList        = targetContent+ " .targetList";
    targetImageBox    = targetContent+ " .imageBox";
    targetImageHidden = targetContent+ " .imageBoxHidden";
    
    // Check to see if Images are used for this widget
    if(json[0].image != 'undefined') { 
      // Lets load the images into a hidden div      
      for (var i=0; i < json.length; i++) { $(targetImageHidden).append($("<li id='item"+i+"'><img src='http://image.thefabricator.com/a/"+json[i].image+"'/></li>")); } 
      // Assign the Default Image as the #1 Result returned
      $(targetImageBox).css("background-image","url(http://image.thefabricator.com/a/"+json[0].image+")");
      }
      
		// Check to see if this is a linking widget
		if(json[0].slug != 'undefined') {
		  // Clear existing items
		  $(targetList).html("<ul>");
		  // Add the items to the list
		  for (var i=0; i < json.length; i++) {
		    $(targetList).append("<li id='item"+i+"' class='item' url='/article/"+json[i].techcell+"/"+json[i].slug+"'>"+json[i].title+"</li>");
		  }
		  $(targetList).append("</ul>");
		}
				
		$(targetContainer+" .item").hover(function() {
      newImage = $("#"+column+" #"+target+" .widget-content #widget .imageBoxHidden #"+$(this).attr("id")+" img").attr("src");
      $("#"+column+" #"+target+" .widget-content #widget .imageBox").css("background-image","url("+newImage+")");
		},
		function() {
      // newImage = $("#"+column+" #"+target+" .widget-content #widget .imageBoxHidden #item0 img").attr("src");
      // $("#"+column+" #"+target+" .widget-content #widget .imageBox").css("background-image","url("+newImage+")");      
		});

		$(targetContainer+" .item").click(function() {
      window.location = $(this).attr("url");
      return false;		  
	  });
 	});					
}
