/* Edit HERE. Make sure each item is surrounded by 
single quotes, and seperated by commas. */
var products = ['Flax Seed','Coffee Beans', 'Chocolate Covered Grasshoppers', 'chili powder','loose leaf tea', 'chia seed', 'rice','candy', 'granola', 'cake mix', 'gluten free products', 'crackers', 'chips', 'dried fruit', 'dried berries', 'powder soap', 'liquid soap', 'beverage mixes', 'sugar', 'salt', 'dog food', 'dog treats', 'chocolate chips', 'preservative free products', 'all natural products', 'protein powder', 'wine', 'alcohol', 'motor oil', 'chemicals', 'pumpkin seeds','bird seed', 'cat nip', 'cat food', 'spices', 'chili mix', 'happy trails award winning chili mix', 'garlic clove amazing rice pilaf', 'munchkin seeds','cashews', 'peanuts', 'pistachios', 'dry mixes', 'beef jerky', 'salad dressing', 'salad dressing mix', 'vegetables', 'dried vegetables', 'organic foods', 'vitamins and supplements', 'honey', 'bbq sauce', 'homeopathic and medicinal tea', 'lawn and garden products', 'fish food', 'horse feed', 'agricultural products','flavored coffee', 'fair traded coffee', 'animal vitamins', 'pond chemicals', 'septic system soap packets', 'medicine', 'potpourri', 'candle beads', 'agricultural seeds', 'farm supplies', 'automotive products', 'vegan foods'];


var currentproduct = 0;
var productsdiv, productscoverdiv;
$(function() {
 productsdiv = $('div#products');
 productscoverdiv = $('div#productscover');
 productscoverdiv.css({opacity:1});
 productRotateChange();
});
function productRotate(){
  productscoverdiv.fadeTo('slow', 1,  productRotateChange);
}
function productRotateChange(){
 if(currentproduct >= products.length) currentproduct = 0;
 productsdiv.text(products[currentproduct++]);
 productscoverdiv.fadeTo('slow', 0, function(){setTimeout('productRotate()', 3000);});
}

