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_369 = { "toolbox_id": "369", "toolbox_title": "MFT - FINAL", "toolbox_items": { "368": { "title": "Top 10 Tax Questions for 2010", "id": "368", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/tax19_th_0.jpg\" alt=\"tax19_th_0.jpg\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": null, "body": "\x3cp\x3eDo you have questions about your taxes? \x3ca href=\"http://www.thebeehive.org/money/pay-taxes/top-10-tax-questions-2010\" target=\"_blank\"\x3eFind answers here\x3c/a\x3e.\x3c/p\x3e" }, "490": { "title": "Documents You May Need for Filing Your Taxes", "id": "490", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/tax09.jpg\" alt=\"tax09.jpg\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": null, "body": "\x3cp\x3e\x3ca href=\"http://www.thebeehive.org/money/pay-taxes/file-your-taxes-free-person/what-bring-when-you-file-your-taxes\" target=\"_blank\"\x3eHere’s a list of items you may need\x3c/a\x3e, whether filing your taxes online or in person.\x3c/p\x3e" }, "541": { "title": "Share Your Tax-Filing Story", "id": "541", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/taxes_th_0.jpg\" alt=\"taxes_th_0.jpg\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": null, "body": "\x3cp\x3eDo you have an interesting story to share about filing your taxes? Any tips for new tax filers? If you received a tax refund, how do you plan to use it? \x3ca href=\"http://thebeehive.org/form/money/pay-taxes/share-your-tax-filing-story\"\x3eShare your story!\x3c/a\x3e\x3c/p\x3e" }, "371": { "title": "Tax Deductions for Students", "id": "371", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/MFT_home.jpg\" alt=\"MFT_home.jpg\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": null, "body": "\x3cp\x3eIf you paid interest on a student loan or tuition and fees to an eligible school, you may be able to deduct part of your income to help lower your taxes. \x3ca href=\"http://www.thebeehive.org/money/pay-taxes/income-basics-credits-deductions-and-witholding/common-tax-deductions/tax-deductions-students\" target=\"_blank\"\x3eLearn more\x3c/a\x3e.\x3c/p\x3e" }, "372": { "title": "Tax Credits for Working People", "id": "372", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/tax07.jpg\" alt=\"tax07.jpg\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": null, "body": "\x3cp\x3e\x3ca href=\"http://www.thebeehive.org/money/pay-taxes/income-basics-credits-deductions-and-witholding/common-tax-credits/tax-credits-working-people\" target=\"_blank\"\x3eLearn about the two main tax credits\x3c/a\x3e designed to help out low and modest income wage earners.\x3c/p\x3e" }, "373": { "title": "Tax Credits for Households with Children", "id": "373", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/tax22.jpg\" alt=\"tax22.jpg\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": null, "body": "\x3cp\x3e\x3ca href=\"http://www.thebeehive.org/money/pay-taxes/income-basics-credits-deductions-and-witholding/common-tax-credits/tax-credits-households-children\" target=\"_blank\"\x3eFind out what kinds of credits are available\x3c/a\x3e for households with children.\x3c/p\x3e" }, "370": { "title": "Your Taxes Are Filed, Now What?", "id": "370", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/refund_180.jpg\" alt=\"refund_180.jpg\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": null, "body": "\x3cp\x3e\x3ca href=\"http://www.thebeehive.org/money/pay-taxes/start-filing-now/your-taxes-are-filed-now-what\" target=\"_blank\"\x3eFind out the next steps\x3c/a\x3e once you file your taxes.\x3c/p\x3e" }, "374": { "title": "Saving Just Got Easier at Tax Time with U.S. Savings Bonds", "id": "374", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/savings-bond.jpg\" alt=\"savings-bond.jpg\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": null, "body": "\x3cp\x3e\x3ca href=\"http://www.thebeehive.org/money/pay-taxes/what-will-you-do-your-refund/news-flash-save-easy-savings-bonds\" target=\"_blank\"\x3eLearn how you can purchase U.S. savings bonds\x3c/a\x3e with your tax refund. \x3c/p\x3e" } }, "base_path": "http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget", "host": "http://toolbox.pic.tv", "round_corners": true, "widget_html": "\x3cdiv class=\"mie-toolbox\" style=\"\" \x3e\n	\x3cdiv class=\"mie-toolbox-header\" style=\"background-color:#0767b7\"\x3e\n	  \x3cdiv class=\"mie-toolbox-header-inner\"\x3e\n	  \x3cimg  width=\"94\" height=\"36\" alt=\"\" src=\"http://toolbox.pic.tv/sites/default/files/images/header/h_mie-toolbox.gif?1263588648\" /\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:#2f3639\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"368\" /\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/tax19_th_0.jpg\" alt=\"tax19_th_0.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\"\x3eTop 10 Tax Questions for 2010\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3e\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\x3eDo you have questions about your taxes? \x3ca href=\"http://www.thebeehive.org/money/pay-taxes/top-10-tax-questions-2010\" target=\"_blank\"\x3eFind answers here\x3c/a\x3e.\x3c/p\x3e\x3c/div\x3e\n		\x3c/div\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#2f3639\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"490\" /\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/tax09.jpg\" alt=\"tax09.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\"\x3eDocuments You May Need for Filing Your Taxes\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3e\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\x3e\x3ca href=\"http://www.thebeehive.org/money/pay-taxes/file-your-taxes-free-person/what-bring-when-you-file-your-taxes\" target=\"_blank\"\x3eHere’s a list of items you may need\x3c/a\x3e, whether filing your taxes online or in person.\x3c/p\x3e\x3c/div\x3e\n		\x3c/div\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#2f3639\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"541\" /\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/taxes_th_0.jpg\" alt=\"taxes_th_0.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\"\x3eShare Your Tax-Filing Story\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3e\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\x3eDo you have an interesting story to share about filing your taxes? Any tips for new tax filers? If you received a tax refund, how do you plan to use it? \x3ca href=\"http://thebeehive.org/form/money/pay-taxes/share-your-tax-filing-story\"\x3eShare your story!\x3c/a\x3e\x3c/p\x3e\x3c/div\x3e\n		\x3c/div\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#2f3639\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"371\" /\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/MFT_home.jpg\" alt=\"MFT_home.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\"\x3eTax Deductions for Students\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3e\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\x3eIf you paid interest on a student loan or tuition and fees to an eligible school, you may be able to deduct part of your income to help lower your taxes. \x3ca href=\"http://www.thebeehive.org/money/pay-taxes/income-basics-credits-deductions-and-witholding/common-tax-deductions/tax-deductions-students\" target=\"_blank\"\x3eLearn more\x3c/a\x3e.\x3c/p\x3e\x3c/div\x3e\n		\x3c/div\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#2f3639\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"372\" /\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/tax07.jpg\" alt=\"tax07.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\"\x3eTax Credits for Working People\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3e\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\x3e\x3ca href=\"http://www.thebeehive.org/money/pay-taxes/income-basics-credits-deductions-and-witholding/common-tax-credits/tax-credits-working-people\" target=\"_blank\"\x3eLearn about the two main tax credits\x3c/a\x3e designed to help out low and modest income wage earners.\x3c/p\x3e\x3c/div\x3e\n		\x3c/div\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#2f3639\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"373\" /\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/tax22.jpg\" alt=\"tax22.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\"\x3eTax Credits for Households with Children\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3e\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\x3e\x3ca href=\"http://www.thebeehive.org/money/pay-taxes/income-basics-credits-deductions-and-witholding/common-tax-credits/tax-credits-households-children\" target=\"_blank\"\x3eFind out what kinds of credits are available\x3c/a\x3e for households with children.\x3c/p\x3e\x3c/div\x3e\n		\x3c/div\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#2f3639\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"370\" /\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/refund_180.jpg\" alt=\"refund_180.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\"\x3eYour Taxes Are Filed, Now What?\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3e\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\x3e\x3ca href=\"http://www.thebeehive.org/money/pay-taxes/start-filing-now/your-taxes-are-filed-now-what\" target=\"_blank\"\x3eFind out the next steps\x3c/a\x3e once you file your taxes.\x3c/p\x3e\x3c/div\x3e\n		\x3c/div\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#2f3639\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"374\" /\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/savings-bond.jpg\" alt=\"savings-bond.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\"\x3eSaving Just Got Easier at Tax Time with U.S. Savings Bonds\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3e\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\x3e\x3ca href=\"http://www.thebeehive.org/money/pay-taxes/what-will-you-do-your-refund/news-flash-save-easy-savings-bonds\" target=\"_blank\"\x3eLearn how you can purchase U.S. savings bonds\x3c/a\x3e with your tax refund. \x3c/p\x3e\x3c/div\x3e\n		\x3c/div\x3e\n		\x3c/div\x3e\n\n    \n	\x3cdiv class=\"mie-toolbox-footer\" style=\"background-color:#0767b7\"\x3e\n	  \x3ca href=\"http://thebeehive.org\"\x3e\x3cimg  id=\"mie-toolbox-footer-image\" width=\"101\" height=\"40\" alt=\"\" src=\"http://toolbox.pic.tv/sites/default/files/images/footer/logo_mie-beehive.gif?1263596593\" /\x3e\x3c/a\x3e	\x3c/div\x3e\n\x3c/div\x3e", "theme": { "theme_id": "397", "base_color": "#0767b7", "open_color": "#181818", "closed_color": "#2f3639", "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_369);