(function($) {
  var cache = [];
  // Arguments are image paths relative to the current page.
  $.preLoadImages = function() {
    var args_len = arguments.length;
    for (var i = args_len; i--;) {
      var cacheImage = document.createElement('img');
      cacheImage.src = arguments[i];
      cache.push(cacheImage);
    }
  }
})(jQuery)

jQuery.preLoadImages("/hub/triffids/wp-content/themes/triffids/images/menu/on/news.png", "/hub/triffids/wp-content/themes/triffids/images/menu/on/latest.png", "/hub/triffids/wp-content/themes/triffids/images/menu/on/cast.png");

$(document).ready(function(){
						   
	$('#tertiary .widget-title-text').each(function() {
		$(this).parent().find(".widget-shadow-text").text($(this).text());
    });

	
});