var offersIndex = 0;offers = new Array();offers[0] = "Free Tea Storage Tin with 16z tea purchase";offers[1] = "Free Shipping on Orders $40 or More";jQuery.preloadImages = function() {  for(var i = 0; i<arguments.length; i++)  {    jQuery("<img>").attr("src", arguments[i]);  }}$(document).ready(function() {	swfobject.embedSWF("includes/templates/primatea/flash/primatea.swf", "flashBanner", "199", "180", "9.0.0");		// navigation		$("#categoriesContent ul li").mouseover(function(){		$(this).css("background","url('includes/templates/primatea/images/nav-butterfly.gif') top left no-repeat");   	 });		$("#categoriesContent ul li").mouseout(function(){		$(this).css("background","none");    	});	// cycle through special offers	setInterval("insertOffer()", 5000);	 });function insertOffer() {	$("#quickspecials").html(offers[offersIndex]);	offersIndex++;	if (offersIndex == offers.length) offersIndex = 0;}