function toolboxLoadScript(fileurl, type, callback){
	var tag;
	if(type == 'css'){
		tag = document.createElement("link");
		tag.setAttribute('type', 'text/css');
		tag.setAttribute('rel', 'stylesheet');
	}else if (type == 'js'){
		tag = document.createElement("script");
		tag.setAttribute('type', 'text/javascript');
	}else{
	  return;
	}

	if(callback){
    if (tag.readyState) {
      //IE
      tag.onreadystatechange = function() {
        if (tag.readyState == "loaded" || tag.readyState == "complete") {
          tag.onreadystatechange = null;
          callback();
        }
      };
    } else {
      //Others
      tag.onload = function() {
        callback();
      };
    }
  }

	if(type == 'css'){
		tag.setAttribute('href', fileurl);
	}else{
		tag.setAttribute('src', fileurl);
	}

	if(typeof fileurl!="undefined"){
		document.getElementsByTagName('head')[0].appendChild(tag);
	}
}

function toolboxIsValidZipCode(value) {
   var re = /^\d{5}([\-]\d{4})?$/;
   return (re.test(value));
}

function toolboxAltCorners(header, footer){
  curvyCorners({
      tl: { radius: 8 },
      tr: { radius: 8 },
      antiAlias: true
    }, header );
  curvyCorners({
      bl: { radius: 8 },
      br: { radius: 8 },
      antiAlias: true
    }, footer );
}

function toolboxInitWidget(toolbox_data){
  document.write('<div id="mie-toolbox-wrapper-'+ toolbox_data.toolbox_id +'"></div>');

  toolboxLoadScript(toolbox_data.css_file, 'css');

  // load and init GA when needed
  if( toolbox_data.reports.log == true && toolbox_data.reports.ga.use == true){
    if (typeof(_gat) == 'undefined') {
      toolboxLoadScript('http://www.google-analytics.com/ga.js', 'js', function(){
        toolboxInitGA(toolbox_data);
      });
    } else {
      toolboxInitGA(toolbox_data);
    }      
  }

  if (typeof(jQuery) == 'undefined') {
    toolboxLoadScript(toolbox_data.base_path + '/js/jquery-1.3.2.min.js', 'js', function(){
      toolboxRenderWidget(toolbox_data);
    });
  } else{
    toolboxRenderWidget(toolbox_data);
  }
}

function toolboxInitGA(toolbox){
  gaToolbox = _gat._getTracker(toolbox.reports.ga.code);
  
  // google tracking. track as both page views and events for now
  gaToolbox._trackPageview(toolboxFormatTitle('toolbox', toolbox.toolbox_id, toolbox.toolbox_title));
  gaToolbox._trackEvent('toolbox', 'view', toolboxFormatTitle('toolbox', toolbox.toolbox_id, toolbox.toolbox_title));
  for(var i in toolbox.toolbox_items){
    gaToolbox._trackPageview(toolbox.toolbox_id +'/'+ toolboxFormatTitle('item', toolbox.toolbox_items[i].id, toolbox.toolbox_items[i].title));
    gaToolbox._trackEvent('toolbox-item', 'view',  toolboxFormatTitle('item', toolbox.toolbox_items[i].id, toolbox.toolbox_items[i].title));
  }
}

function toolboxFormatTitle(type, id, title){
  return type +': '+ id +' - '+ title;
}

function toolboxRenderWidget(toolbox_data){
  var toolbox = jQuery('#mie-toolbox-wrapper-' + toolbox_data.toolbox_id);
  toolbox.append(toolbox_data.widget_html);

  if (jQuery.browser.msie && jQuery.browser.version < 7){
    toolboxLoadScript(toolbox_data.base_path + '/js/pngfix.js', 'js');
  }

  // set the content containers width to avoid jumping during animation (also on window resize)
  jQuery('div.mie-toolbox-item-content', toolbox).css('width', jQuery('.mie-toolbox', toolbox).css('width'));
  jQuery(window).resize(function(){
    jQuery('div.mie-toolbox-item-content', toolbox).css('width', jQuery('.mie-toolbox', toolbox).css('width'));
  });

  // need to round corners for all except IE6. Call alt method for IE, else use CSS
  if(toolbox_data.round_corners && !(jQuery.browser.version < 7 && jQuery.browser.msie)){
    if(jQuery.browser.msie || jQuery.browser.opera){
      jQuery(document).ready(function() {
        if (typeof(curvyCorners) === 'function') {
          toolboxAltCorners('#mie-toolbox-wrapper-' + toolbox_data.toolbox_id + ' .mie-toolbox-header', '#mie-toolbox-wrapper-' + toolbox_data.toolbox_id + ' .mie-toolbox-footer');
        } else {
         toolboxLoadScript(toolbox_data.base_path + '/js/curvycorners.js', 'js',
          function(){toolboxAltCorners('#mie-toolbox-wrapper-' + toolbox_data.toolbox_id + ' .mie-toolbox-header', '#mie-toolbox-wrapper-' + toolbox_data.toolbox_id + ' .mie-toolbox-footer');} );
        }
      });
    } else {
      jQuery('div.mie-toolbox-header', toolbox).addClass('mie-toolbox-header-corners');
      jQuery('div.mie-toolbox-footer', toolbox).addClass('mie-toolbox-footer-corners');
    }
  }

  jQuery('div.mie-toolbox-item-header', toolbox).hover(
    function(){
      var visible = (jQuery(this).next().css('display') != 'none');
      jQuery(this).css('background-color', toolbox_data.theme.open_color);
      if(visible){
        jQuery('div.mie-toolbox-item-more-text', this).text(toolbox_data.theme.more_text_close).show();
      } else {
        jQuery('div.mie-toolbox-item-more-text', this).text(toolbox_data.theme.more_text_open).show();
      }
    },
    function(){
      var visible = (jQuery(this).next().css('display') != 'none');
      if(!visible){
        jQuery(this).css('background-color', toolbox_data.theme.closed_color);
      }
      jQuery('div.mie-toolbox-item-more-text', this).html('&nbsp;');
    }
  );

  jQuery('div.mie-toolbox-item-header', toolbox).click(function(){
    var header = jQuery(this);
    var visible = (header.next().css('display') != 'none');
    var more_text = toolbox_data.theme.more_text_close;
    var bgcolor = toolbox_data.theme.open_color;
    if(visible){
      bgcolor = toolbox_data.theme.closed_color;
      more_text = toolbox_data.theme.more_text_open;
      jQuery('img.mie-toolbox-item-more-image', this).attr('src', toolbox_data.base_path + "/images/arrow.png");
    } else {
      jQuery('img.mie-toolbox-item-more-image', this).attr('src', toolbox_data.base_path + "/images/arrow_down.png");
    }
    header.siblings('div.mie-toolbox-item-header').each(function(){
      jQuery(this).css('background-color', toolbox_data.theme.closed_color);
      jQuery('img.mie-toolbox-item-more-image', this).attr('src', toolbox_data.base_path + "/images/arrow.png");
    });
    header.next('div.mie-toolbox-item-content').slideToggle('slow', function(){
      jQuery('div.mie-toolbox-item-more-text', header).text(more_text);
      header.css('background-color', bgcolor);
    }).siblings("div.mie-toolbox-item-content").slideUp("fast");

    // log the click only when opening
    if(!visible && toolbox_data.reports.log == true){
      var item_id = jQuery('input.toolbox-item-id', this).val();
      // google tracking
      if(toolbox_data.reports.ga.use == true){
        gaToolbox._trackEvent('toolbox-item', 'open', toolboxFormatTitle('item', item_id, toolbox_data.toolbox_items[item_id]['title']));
      }
      
      jQuery.ajax({
        type: 'GET',
        url: toolbox_data.host +'/toolbox_reports/item_open/'+ item_id +'/'+ toolbox_data.toolbox_id
      });
    }
  });

  jQuery("form.toolbox_rl_form", toolbox).submit(function() {
    var zip = jQuery("input.toolbox_rl_zip", this).val();
    var results_container = jQuery(this).next('div.toolbox_rl_results');
    if (toolboxIsValidZipCode(zip)) {
      results_container.text("Loading...").show();
      var domain = jQuery("input.toolbox_rl_domain", this).val();
      jQuery.ajax({
        type: 'GET',
        url: 'http://api.thebeehive.org/JSONService/GetResourceCountByCategoryZipWithCallBack',
        data: "language=en&appname=toolbox&CategoryItemId="+ jQuery("input.toolbox_rl_categories", this).val() +"&Region=US&zipcode="+ zip,
        dataType: 'jsonp',
        timeout: 3000,
        success: function(data, textStatus){
          var result = '';
          results_container.text('').hide();
          if(data==0){
            result = 'Please enter a valid 5 digit zip code.';
          } else {
            result = jQuery('<ul />');
            for(i in data){
              var count = 0;
              if(data[i].resourceCount > 0){
                var a = jQuery('<a />')
                  .attr('href', domain + data[i].url)
                  .attr('target', '_blank')
                  .text(data[i].categoryName + ' ('+ data[i].resourceCount +')');

                result.append(jQuery('<li />').append(a));
                count ++;
              }
            }
            if(count == 0){
              result = 'Sorry, we found no results for that zip code.'
            }
          }
          results_container.append(result).fadeIn();
        },
        error: function(XMLHttpRequest, textStatus, errorThrown){
          results_container.text("Sorry, there was a problem: "+ textStatus +".").fadeIn();
        }
      });
      // google tracking
      if(toolbox_data.reports.log == true && toolbox_data.reports.ga.use == true){
        gaToolbox._trackEvent('resource-locator', 'submit', zip);
      }             
    } else {
      results_container.text("Please enter a valid 5 digit zip code.").show().fadeOut(5000);
    }

    return false;
  });

  jQuery('div.mie-toolbox-share-header', toolbox).click(function(){
    var header = jQuery(this);
    var visible = (header.next().css('display') != 'none');
    var more_text = toolbox_data.theme.more_text_close;
    if(visible){
      more_text = toolbox_data.theme.more_text_open;
      jQuery('img', this).attr('src', toolbox_data.base_path + "/images/arrow.png");
      // google tracking
      if(toolbox_data.reports.log == true && toolbox_data.reports.ga.use == true){
        gaToolbox._trackEvent('toolbox', 'share', toolboxFormatTitle('toolbox', toolbox_data.toolbox_id, toolbox_data.toolbox_title));
      }       
    } else {
      jQuery('img', this).attr('src', toolbox_data.base_path + "/images/arrow_down.png");
    }
    header.next('div.mie-toolbox-share-content', toolbox).slideToggle('slow');
  });

  // track item link clicks
  if(toolbox_data.reports.log == true){
    jQuery('div.mie-toolbox-item-content', toolbox).each(function(){
      var item_id = jQuery('input.toolbox-item-id', jQuery(this).prev('div.mie-toolbox-item-header')).val();
      jQuery('a', this).click(function(){
        // google tracking
        if(toolbox_data.reports.ga.use == true){
          gaToolbox._trackEvent('toolbox-item', 'click', 'Link: '+ escape(jQuery(this).attr('href')));
        } 
       
        jQuery.ajax({
          type: 'GET',
          data: 'url='+ escape(jQuery(this).attr('href')),
          url: toolbox_data.host +'/toolbox_reports/link_click/'+ item_id +'/'+ toolbox_data.toolbox_id
        });
      });
    });    

    // track header/footer clicks
    jQuery('div.mie-toolbox-header, div.mie-toolbox-footer', toolbox).each(function(){
      jQuery('a', this).click(function(){
        // google tracking
        if(toolbox_data.reports.ga.use == true){
          gaToolbox._trackEvent('toolbox-theme', 'click', 'Link: '+ escape(jQuery(this).attr('href')));
        }
      
        jQuery.ajax({
          type: 'GET',
          data: 'url='+ escape(jQuery(this).attr('href')),
          url: toolbox_data.host +'/toolbox_reports/link_click/'+ toolbox_data.theme.theme_id +'/'+ toolbox_data.toolbox_id
        });
      });
    });
  }
}var toolbox_data_442 = { "toolbox_id": "442", "toolbox_title": "Usher Toolbox", "toolbox_items": { "437": { "title": "Usher", "id": "437", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/usher.jpg\" alt=\"usher.jpg\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": "His message to young people", "body": "\x3ch2\x3e\x3cfont face=\"Trebuchet MS\"\x3e\x3cspan style=\"font-size: 9pt;\"\x3e“I’m\r\nchallenging youth around the world to prove that you have the power to\r\nhave an impact on a humanitarian crisis. \x26nbsp;I know that you have the\r\ntalent, creativity and energy to assist in supporting Haiti’s needs.”\x3c/span\x3e\x3c/font\x3e\x3c/h2\x3e\x3cp style=\"text-align: right;\"\x3e\x3cfont face=\"Trebuchet MS\"\x3e\x3cspan style=\"font-size: 9pt;\"\x3e-- Usher\x3cbr\x3e\x3c/span\x3e\x3c/font\x3e\x3c/p\x3e" }, "438": { "title": "Donate to the Central Emergency Response Fund", "id": "438", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/cellphone.gif\" alt=\"cellphone.gif\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": "Text \'CERF\' to 90999", "body": "\x3cp style=\"text-align: center;\"\x3e\x3cstrong\x3eTEXT \'CERF\' to 90999\x3c/strong\x3e\x3c/p\x3e\x3cp style=\"text-align: left;\"\x3e\x3cstrong\x3eIf only 1 percent of the world’s youth population raised $5 each, we\r\ncould raise $150 million to support the United Nation’s relief efforts.\x3c/strong\x3e\x3c/p\x3e\x3cp\x3e The \x3ca href=\"www.ushersnewlook.org\"\x3eUsher’s New Look website\x3c/a\x3e is also linking directly to the CERF donation page.\x3c/p\x3e" }, "439": { "title": "Tweet Your Support", "id": "439", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/twitter.jpg\" alt=\"twitter.jpg\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": "Report your success", "body": "\x3ch2\x3eTag your tweets with @powerbyservice\x3c/h2\x3e\x3cp\x3e\r\n\r\nOnce you make a donation -- for every dollar you raise -- Tweet your support!\x3c/p\x3e" }, "440": { "title": "View The Maps", "id": "440", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/Screen shot 2010-01-18 at 6.14.12 PM.png\" alt=\"Screen shot 2010-01-18 at 6.14.12 PM.png\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": "See where people are texting from in Haiti", "body": "\x3ch2\x3eWhat Is Ushahidi?\x3c/h2\x3e\r\n\x3cp\x3e\x3cobject width=\"250\" height=\"150\"\x3e\x3cparam name=\"allowfullscreen\" value=\"true\"\x3e\x3cparam name=\"allowscriptaccess\" value=\"always\"\x3e\x3cparam name=\"movie\" value=\"http://vimeo.com/moogaloop.swf?clip_id=7838030\x26amp;server=vimeo.com\x26amp;show_title=1\x26amp;show_byline=1\x26amp;show_portrait=0\x26amp;color=\x26amp;fullscreen=1\"\x3e\x3cembed type=\"application/x-shockwave-flash\" src=\"http://vimeo.com/moogaloop.swf?clip_id=7838030\x26amp;server=vimeo.com\x26amp;show_title=1\x26amp;show_byline=1\x26amp;show_portrait=0\x26amp;color=\x26amp;fullscreen=1\" allowfullscreen=\"true\" allowscriptaccess=\"always\" width=\"250\" height=\"150\"\x3e\x3c/object\x3e\x3c/p\x3e\r\n\x3cp\x3e\x26nbsp;\x3c/p\x3e\x3cp\x3eUSHAHIDI in English means Testimony - The word is a SWAHILI word. \r\n\r\n\x3c/p\x3e\x3cp\x3e\x3ca href=\"http://www.ushahidi.com/\" target=\"_blank\"\x3e\x3c/a\x3e\r\n\r\n\x3c/p\x3e\x3cp\x3e\x3ca href=\"http://haiti.ushahidi.com/\"\x3eCheck out the maps.\x3c/a\x3e\x3c/p\x3e" }, "443": { "title": "Find Haiti", "id": "443", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/Screen shot 2010-01-18 at 6.27.50 PM.png\" alt=\"Screen shot 2010-01-18 at 6.27.50 PM.png\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": "Use Google Maps to locate where Haiti is in the world", "body": "\x3ciframe width=\"250\" height=\"250\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.com/maps?f=q\x26amp;source=s_q\x26amp;hl=en\x26amp;geocode=\x26amp;q=haiti\x26amp;sll=45.563739,-122.655429\x26amp;sspn=0.008383,0.014119\x26amp;ie=UTF8\x26amp;hq=\x26amp;hnear=Haiti\x26amp;ll=18.85431,-72.004395\x26amp;spn=5.196845,5.471191\x26amp;z=6\x26amp;output=embed\"\x3e\x3c/iframe\x3e\x3cbr /\x3e\x3csmall\x3e\x3ca href=\"http://maps.google.com/maps?f=q\x26amp;source=embed\x26amp;hl=en\x26amp;geocode=\x26amp;q=haiti\x26amp;sll=45.563739,-122.655429\x26amp;sspn=0.008383,0.014119\x26amp;ie=UTF8\x26amp;hq=\x26amp;hnear=Haiti\x26amp;ll=18.85431,-72.004395\x26amp;spn=5.196845,5.471191\x26amp;z=6\" style=\"color:#0000FF;text-align:left\"\x3eView Larger Map\x3c/a\x3e\x3c/small\x3e" }, "452": { "title": "Hush", "id": "452", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/usherhush.jpg\" alt=\"usherhush.jpg\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": "Listen to Usher\'s song about service", "body": "\x3ccenter\x3e\r\n\x3cimg src=\"http://www.pic.tv/files/images/usherhush.jpg\" width=250;\x3e\r\n\x3c/center\x3e\x3cbr\x3e\r\n\r\n\x3ch2\x3e“Whether serving at the homeless shelter or going to the polls for the first time, you have to act or else ‘Hush’”\x3c/h2\x3e\r\n\x3cdiv style=\"text-align: right;\"\x3e-- Usher \x3c/div\x3e\r\n\r\n\r\n\r\n\x3ccenter\x3e\x3cp\x3e\x3cembed type=\"application/x-shockwave-flash\" src=\"http://www.odeo.com/flash/audio_player_standard_gray.swf\" quality=\"high\" allowscriptaccess=\"always\" wmode=\"transparent\" flashvars=\"valid_sample_rate=true\x26amp;external_url=http://pic.tv/files/audio/hush.mp3\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" width=\"250\" height=\"52\"\x3e\x3c/p\x3e\x3c/center\x3e" } }, "base_path": "http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget", "host": "http://toolbox.pic.tv", "round_corners": false, "widget_html": "\x3cdiv class=\"mie-toolbox\" style=\"width: 220px\" \x3e\n	\x3cdiv class=\"mie-toolbox-header\" style=\"background-color:#535400\"\x3e\n	  \x3cdiv class=\"mie-toolbox-header-inner\"\x3e\n	  \x3cimg  width=\"256\" height=\"72\" alt=\"\" src=\"http://toolbox.pic.tv/sites/default/files/images/header/toolbox_title_4.png?1263866687\" /\x3e	  \x3c/div\x3e\n	\x3c/div\x3e\n\n	\x3cdiv class=\"mie-toolbox-items\"\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#363636\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"437\" /\x3e\n		  \x3cdiv class=\"mie-toolbox-item-header-inner\"\x3e\n  		  \x3ctable class=\"mie-toolbox-item-header-table\" width=\"100%\"\x3e\n  		    \x3ctr\x3e\n  		        		      \x3ctd style=\"width:1px;\"\x3e\n        			\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/usher.jpg\" alt=\"usher.jpg\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e  			    \x3c/td\x3e\n  			      			    \x3ctd\x3e\n        			\x3ch3 class=\"mie-toolbox-item-title\"\x3eUsher\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3eHis message to young people\x3c/div\x3e\n  			    \x3c/td\x3e\n  			    \x3ctd style=\"width:1%;\"\x3e\n  			      \x3cdiv class=\"mie-toolbox-item-more\"\x3e\n        				\x3cdiv class=\"mie-toolbox-item-more-text\"\x3e\x26nbsp;\x3c/div\x3e\n        				\x3cimg width=\"15px\" height=\"15px\" class=\"mie-toolbox-item-more-image\" src=\"http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget/images/arrow.png\" /\x3e\n      				\x3c/div\x3e\n  			    \x3c/td\x3e\n  			  \x3c/tr\x3e\n  			\x3c/table\x3e\n			\x3c/div\x3e\n		\x3c/div\x3e\n\n		\x3cdiv class=\"mie-toolbox-item-content\" style=\"background-color:#181818\"\x3e\n		  \x3cdiv class=\"mie-toolbox-item-content-inner\"\x3e\x3ch2\x3e\x3cfont face=\"Trebuchet MS\"\x3e\x3cspan style=\"font-size: 9pt;\"\x3e“I’m\r\nchallenging youth around the world to prove that you have the power to\r\nhave an impact on a humanitarian crisis. \x26nbsp;I know that you have the\r\ntalent, creativity and energy to assist in supporting Haiti’s needs.”\x3c/span\x3e\x3c/font\x3e\x3c/h2\x3e\x3cp style=\"text-align: right;\"\x3e\x3cfont face=\"Trebuchet MS\"\x3e\x3cspan style=\"font-size: 9pt;\"\x3e-- Usher\x3cbr\x3e\x3c/span\x3e\x3c/font\x3e\x3c/p\x3e\x3c/div\x3e\n		\x3c/div\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#363636\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"438\" /\x3e\n		  \x3cdiv class=\"mie-toolbox-item-header-inner\"\x3e\n  		  \x3ctable class=\"mie-toolbox-item-header-table\" width=\"100%\"\x3e\n  		    \x3ctr\x3e\n  		        		      \x3ctd style=\"width:1px;\"\x3e\n        			\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/cellphone.gif\" alt=\"cellphone.gif\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e  			    \x3c/td\x3e\n  			      			    \x3ctd\x3e\n        			\x3ch3 class=\"mie-toolbox-item-title\"\x3eDonate to the Central Emergency Response Fund\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3eText \'CERF\' to 90999\x3c/div\x3e\n  			    \x3c/td\x3e\n  			    \x3ctd style=\"width:1%;\"\x3e\n  			      \x3cdiv class=\"mie-toolbox-item-more\"\x3e\n        				\x3cdiv class=\"mie-toolbox-item-more-text\"\x3e\x26nbsp;\x3c/div\x3e\n        				\x3cimg width=\"15px\" height=\"15px\" class=\"mie-toolbox-item-more-image\" src=\"http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget/images/arrow.png\" /\x3e\n      				\x3c/div\x3e\n  			    \x3c/td\x3e\n  			  \x3c/tr\x3e\n  			\x3c/table\x3e\n			\x3c/div\x3e\n		\x3c/div\x3e\n\n		\x3cdiv class=\"mie-toolbox-item-content\" style=\"background-color:#181818\"\x3e\n		  \x3cdiv class=\"mie-toolbox-item-content-inner\"\x3e\x3cp style=\"text-align: center;\"\x3e\x3cstrong\x3eTEXT \'CERF\' to 90999\x3c/strong\x3e\x3c/p\x3e\x3cp style=\"text-align: left;\"\x3e\x3cstrong\x3eIf only 1 percent of the world’s youth population raised $5 each, we\r\ncould raise $150 million to support the United Nation’s relief efforts.\x3c/strong\x3e\x3c/p\x3e\x3cp\x3e The \x3ca href=\"www.ushersnewlook.org\"\x3eUsher’s New Look website\x3c/a\x3e is also linking directly to the CERF donation page.\x3c/p\x3e\x3c/div\x3e\n		\x3c/div\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#363636\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"439\" /\x3e\n		  \x3cdiv class=\"mie-toolbox-item-header-inner\"\x3e\n  		  \x3ctable class=\"mie-toolbox-item-header-table\" width=\"100%\"\x3e\n  		    \x3ctr\x3e\n  		        		      \x3ctd style=\"width:1px;\"\x3e\n        			\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/twitter.jpg\" alt=\"twitter.jpg\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e  			    \x3c/td\x3e\n  			      			    \x3ctd\x3e\n        			\x3ch3 class=\"mie-toolbox-item-title\"\x3eTweet Your Support\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3eReport your success\x3c/div\x3e\n  			    \x3c/td\x3e\n  			    \x3ctd style=\"width:1%;\"\x3e\n  			      \x3cdiv class=\"mie-toolbox-item-more\"\x3e\n        				\x3cdiv class=\"mie-toolbox-item-more-text\"\x3e\x26nbsp;\x3c/div\x3e\n        				\x3cimg width=\"15px\" height=\"15px\" class=\"mie-toolbox-item-more-image\" src=\"http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget/images/arrow.png\" /\x3e\n      				\x3c/div\x3e\n  			    \x3c/td\x3e\n  			  \x3c/tr\x3e\n  			\x3c/table\x3e\n			\x3c/div\x3e\n		\x3c/div\x3e\n\n		\x3cdiv class=\"mie-toolbox-item-content\" style=\"background-color:#181818\"\x3e\n		  \x3cdiv class=\"mie-toolbox-item-content-inner\"\x3e\x3ch2\x3eTag your tweets with @powerbyservice\x3c/h2\x3e\x3cp\x3e\r\n\r\nOnce you make a donation -- for every dollar you raise -- Tweet your support!\x3c/p\x3e\x3c/div\x3e\n		\x3c/div\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#363636\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"440\" /\x3e\n		  \x3cdiv class=\"mie-toolbox-item-header-inner\"\x3e\n  		  \x3ctable class=\"mie-toolbox-item-header-table\" width=\"100%\"\x3e\n  		    \x3ctr\x3e\n  		        		      \x3ctd style=\"width:1px;\"\x3e\n        			\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/Screen shot 2010-01-18 at 6.14.12 PM.png\" alt=\"Screen shot 2010-01-18 at 6.14.12 PM.png\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e  			    \x3c/td\x3e\n  			      			    \x3ctd\x3e\n        			\x3ch3 class=\"mie-toolbox-item-title\"\x3eView The Maps\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3eSee where people are texting from in Haiti\x3c/div\x3e\n  			    \x3c/td\x3e\n  			    \x3ctd style=\"width:1%;\"\x3e\n  			      \x3cdiv class=\"mie-toolbox-item-more\"\x3e\n        				\x3cdiv class=\"mie-toolbox-item-more-text\"\x3e\x26nbsp;\x3c/div\x3e\n        				\x3cimg width=\"15px\" height=\"15px\" class=\"mie-toolbox-item-more-image\" src=\"http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget/images/arrow.png\" /\x3e\n      				\x3c/div\x3e\n  			    \x3c/td\x3e\n  			  \x3c/tr\x3e\n  			\x3c/table\x3e\n			\x3c/div\x3e\n		\x3c/div\x3e\n\n		\x3cdiv class=\"mie-toolbox-item-content\" style=\"background-color:#181818\"\x3e\n		  \x3cdiv class=\"mie-toolbox-item-content-inner\"\x3e\x3ch2\x3eWhat Is Ushahidi?\x3c/h2\x3e\r\n\x3cp\x3e\x3cobject width=\"250\" height=\"150\"\x3e\x3cparam name=\"allowfullscreen\" value=\"true\"\x3e\x3cparam name=\"allowscriptaccess\" value=\"always\"\x3e\x3cparam name=\"movie\" value=\"http://vimeo.com/moogaloop.swf?clip_id=7838030\x26amp;server=vimeo.com\x26amp;show_title=1\x26amp;show_byline=1\x26amp;show_portrait=0\x26amp;color=\x26amp;fullscreen=1\"\x3e\x3cembed type=\"application/x-shockwave-flash\" src=\"http://vimeo.com/moogaloop.swf?clip_id=7838030\x26amp;server=vimeo.com\x26amp;show_title=1\x26amp;show_byline=1\x26amp;show_portrait=0\x26amp;color=\x26amp;fullscreen=1\" allowfullscreen=\"true\" allowscriptaccess=\"always\" width=\"250\" height=\"150\"\x3e\x3c/object\x3e\x3c/p\x3e\r\n\x3cp\x3e\x26nbsp;\x3c/p\x3e\x3cp\x3eUSHAHIDI in English means Testimony - The word is a SWAHILI word. \r\n\r\n\x3c/p\x3e\x3cp\x3e\x3ca href=\"http://www.ushahidi.com/\" target=\"_blank\"\x3e\x3c/a\x3e\r\n\r\n\x3c/p\x3e\x3cp\x3e\x3ca href=\"http://haiti.ushahidi.com/\"\x3eCheck out the maps.\x3c/a\x3e\x3c/p\x3e\x3c/div\x3e\n		\x3c/div\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#363636\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"443\" /\x3e\n		  \x3cdiv class=\"mie-toolbox-item-header-inner\"\x3e\n  		  \x3ctable class=\"mie-toolbox-item-header-table\" width=\"100%\"\x3e\n  		    \x3ctr\x3e\n  		        		      \x3ctd style=\"width:1px;\"\x3e\n        			\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/Screen shot 2010-01-18 at 6.27.50 PM.png\" alt=\"Screen shot 2010-01-18 at 6.27.50 PM.png\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e  			    \x3c/td\x3e\n  			      			    \x3ctd\x3e\n        			\x3ch3 class=\"mie-toolbox-item-title\"\x3eFind Haiti\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3eUse Google Maps to locate where Haiti is in the world\x3c/div\x3e\n  			    \x3c/td\x3e\n  			    \x3ctd style=\"width:1%;\"\x3e\n  			      \x3cdiv class=\"mie-toolbox-item-more\"\x3e\n        				\x3cdiv class=\"mie-toolbox-item-more-text\"\x3e\x26nbsp;\x3c/div\x3e\n        				\x3cimg width=\"15px\" height=\"15px\" class=\"mie-toolbox-item-more-image\" src=\"http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget/images/arrow.png\" /\x3e\n      				\x3c/div\x3e\n  			    \x3c/td\x3e\n  			  \x3c/tr\x3e\n  			\x3c/table\x3e\n			\x3c/div\x3e\n		\x3c/div\x3e\n\n		\x3cdiv class=\"mie-toolbox-item-content\" style=\"background-color:#181818\"\x3e\n		  \x3cdiv class=\"mie-toolbox-item-content-inner\"\x3e\x3ciframe width=\"250\" height=\"250\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.com/maps?f=q\x26amp;source=s_q\x26amp;hl=en\x26amp;geocode=\x26amp;q=haiti\x26amp;sll=45.563739,-122.655429\x26amp;sspn=0.008383,0.014119\x26amp;ie=UTF8\x26amp;hq=\x26amp;hnear=Haiti\x26amp;ll=18.85431,-72.004395\x26amp;spn=5.196845,5.471191\x26amp;z=6\x26amp;output=embed\"\x3e\x3c/iframe\x3e\x3cbr /\x3e\x3csmall\x3e\x3ca href=\"http://maps.google.com/maps?f=q\x26amp;source=embed\x26amp;hl=en\x26amp;geocode=\x26amp;q=haiti\x26amp;sll=45.563739,-122.655429\x26amp;sspn=0.008383,0.014119\x26amp;ie=UTF8\x26amp;hq=\x26amp;hnear=Haiti\x26amp;ll=18.85431,-72.004395\x26amp;spn=5.196845,5.471191\x26amp;z=6\" style=\"color:#0000FF;text-align:left\"\x3eView Larger Map\x3c/a\x3e\x3c/small\x3e\x3c/div\x3e\n		\x3c/div\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#363636\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"452\" /\x3e\n		  \x3cdiv class=\"mie-toolbox-item-header-inner\"\x3e\n  		  \x3ctable class=\"mie-toolbox-item-header-table\" width=\"100%\"\x3e\n  		    \x3ctr\x3e\n  		        		      \x3ctd style=\"width:1px;\"\x3e\n        			\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/usherhush.jpg\" alt=\"usherhush.jpg\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e  			    \x3c/td\x3e\n  			      			    \x3ctd\x3e\n        			\x3ch3 class=\"mie-toolbox-item-title\"\x3eHush\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3eListen to Usher\'s song about service\x3c/div\x3e\n  			    \x3c/td\x3e\n  			    \x3ctd style=\"width:1%;\"\x3e\n  			      \x3cdiv class=\"mie-toolbox-item-more\"\x3e\n        				\x3cdiv class=\"mie-toolbox-item-more-text\"\x3e\x26nbsp;\x3c/div\x3e\n        				\x3cimg width=\"15px\" height=\"15px\" class=\"mie-toolbox-item-more-image\" src=\"http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget/images/arrow.png\" /\x3e\n      				\x3c/div\x3e\n  			    \x3c/td\x3e\n  			  \x3c/tr\x3e\n  			\x3c/table\x3e\n			\x3c/div\x3e\n		\x3c/div\x3e\n\n		\x3cdiv class=\"mie-toolbox-item-content\" style=\"background-color:#181818\"\x3e\n		  \x3cdiv class=\"mie-toolbox-item-content-inner\"\x3e\x3ccenter\x3e\r\n\x3cimg src=\"http://www.pic.tv/files/images/usherhush.jpg\" width=250;\x3e\r\n\x3c/center\x3e\x3cbr\x3e\r\n\r\n\x3ch2\x3e“Whether serving at the homeless shelter or going to the polls for the first time, you have to act or else ‘Hush’”\x3c/h2\x3e\r\n\x3cdiv style=\"text-align: right;\"\x3e-- Usher \x3c/div\x3e\r\n\r\n\r\n\r\n\x3ccenter\x3e\x3cp\x3e\x3cembed type=\"application/x-shockwave-flash\" src=\"http://www.odeo.com/flash/audio_player_standard_gray.swf\" quality=\"high\" allowscriptaccess=\"always\" wmode=\"transparent\" flashvars=\"valid_sample_rate=true\x26amp;external_url=http://pic.tv/files/audio/hush.mp3\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" width=\"250\" height=\"52\"\x3e\x3c/p\x3e\x3c/center\x3e\x3c/div\x3e\n		\x3c/div\x3e\n		\x3c/div\x3e\n\n      \x3cdiv class=\"mie-toolbox-share-header\" style=\"background-color:#535400\"\x3e\n      \x3cdiv class=\"mie-toolbox-item-header-inner\"\x3e\n      \x3ctable class=\"mie-toolbox-item-header-table\" width=\"100%\"\x3e\n        \x3ctr\x3e\n          \x3ctd style=\"text-align:right\"\x3eshare this toolbox\x3c/td\x3e\n          \x3ctd style=\"width:40px;text-align:center\"\x3e\x3cimg width=\"15px\" height=\"15px\" src=\"http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget/images/arrow.png\" /\x3e\x3c/td\x3e\n        \x3c/tr\x3e\n      \x3c/table\x3e\n      \x3c/div\x3e\n    \x3c/div\x3e\n    \x3cdiv class=\"mie-toolbox-share-content\" style=\"background-color:#181818\"\x3e\n      By re-publishing this Toolbox,\x3cbr/\x3eI agree to these \x3ca href=\"http://www.pic.tv/toolboxterms\"\x3eTerms and Conditions of Use\x3c/a\x3e.\x3cbr/\x3e\n      \x3cinput type=\"text\" class=\"mie-toolbox-text-field\" onclick=\"this.focus(); this.select();\" value=\"\x26lt;div\x26gt;\x26lt;script type=\x26quot;text/javascript\x26quot; src=\x26quot;http://toolbox.pic.tv/toolbox_widget/442/?width=260\x26quot;\x26gt;\x26lt;/script\x26gt;\x26lt;noscript\x26gt;\x26lt;a href=\x26quot;http://toolbox.pic.tv/toolbox/442\x26quot;\x26gt;View the entire content of this Toolbox here.Usher Toolbox\x26lt;/a\x26gt;The \x26lt;a href=\x26quot;http://toolbox.pic.tv/about\x26quot;\x26gt;Make It Easy Toolbox\x26lt;/a\x26gt; is a feature of the \x26lt;a href=\x26quot;http://pic.tv\x26quot;\x26gt;Public Internet Channel\x26lt;/a\x26gt; and displays content also available on \x26lt;a href=\x26quot;http://thebeehive.org\x26quot;\x26gt;the Beehive\x26lt;/a\x26gt;, where you can get free how to help on \x26lt;a href=\x26quot;http://www.thebeehive.org/money/pay-taxes\x26quot; target=\x26quot;_blank\x26quot;\x26gt;tax prep\x26lt;/a\x26gt;, \x26lt;a href=\x26quot;http://www.thebeehive.org/money/spend-it/budget\x26quot; target=\x26quot;_blank\x26quot;\x26gt;budget\x26lt;/a\x26gt;, \x26lt;a href=\x26quot;http://www.thebeehive.org/diabetes\x26quot; target=\x26quot;_blank\x26quot;\x26gt;diabetes\x26lt;/a\x26gt;, \x26lt;a href=\x26quot;http://www.thebeehive.org/health\x26quot; target=\x26quot;_blank\x26quot;\x26gt;health\x26lt;/a\x26gt;, \x26lt;a href=\x26quot;http://www.thebeehive.org/jobs/career-coach\x26quot; target=\x26quot;_blank\x26quot;\x26gt;career\x26lt;/a\x26gt;, \x26lt;a href=\x26quot;http://www.thebeehive.org/school/k-12-students/homework-help\x26quot; target=\x26quot;_blank\x26quot;\x26gt;homework\x26lt;/a\x26gt;, \x26lt;a href=\x26quot;http://www.thebeehive.org/jobs\x26quot; target=\x26quot;_blank\x26quot;\x26gt;jobs\x26lt;/a\x26gt;, \x26lt;a href=\x26quot;http://www.thebeehive.org/jobs/unemployment-101\x26quot; target=\x26quot;_blank\x26quot;\x26gt;unemployment\x26lt;/a\x26gt; \x26amp;amp; more.\x26lt;/noscript\x26gt;\x26lt;/div\x26gt;\" style=\"width:80%\"/\x3e\n    \x3c/div\x3e\n    \n	\x3cdiv class=\"mie-toolbox-footer\" style=\"background-color:#535400\"\x3e\n	  \x3ca href=\"http://pic.tv/haiti\"\x3e\x3cimg  id=\"mie-toolbox-footer-image\" width=\"165\" height=\"39\" alt=\"\" src=\"http://toolbox.pic.tv/sites/default/files/images/footer/pic_logo_tb_0_0.png?1263866920\" /\x3e\x3c/a\x3e	\x3c/div\x3e\n\x3c/div\x3e", "theme": { "theme_id": "441", "base_color": "#535400", "open_color": "#181818", "closed_color": "#363636", "more_text_open": "open", "more_text_close": "close" }, "css_file": "http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget/css/toolbox_widget.css?1270586339", "reports": { "log": true, "ga": { "use": 1, "code": "UA-15172132-1" } } }; toolboxInitWidget(toolbox_data_442);