"use strict";

function lifestyle_shuffle (items) 
{
    var j, x, n = items.length;
    while (n)
    {
        j = parseInt(Math.random() * n, 10);
        n -= 1;
        x = items[n];
        items[n] = items[j];
        items[j] = x;
    }
    return items;
}

function lifestyle_entries () 
{
    var images = [], image;

    image = {};
    image.type = 'product';
    image.src = "/images/samplerscroll.jpg";
    image.primary = '2oz samplers are now available! Perfect to expand your tea selection or gift giving.'
	image.secondary = "";
    image.tertiary = '2 oz have been added to all individual teas. Now you have the option of purchasing 2 oz, 4 oz or 8 oz. Perfect way to expand your tea selection or customizethat special gift. Each package yields approximately 20-25 cups of tea.';          
    image.alt = '';
    image.uri = '/c-12-tea-samplers.aspx';
    images.push(image);
	
	image = {};
    image.type = 'person';
    image.src = "/images/lifestyle/karen.jpg";
    image.primary = "Lemon Basil Oolong";
    image.secondary = "&ldquo; Love my lemon-basil oolong in the morning. I am addicted to the sassy peppery afternote that helps  to kick start my morning yoga practice &rdquo;";
    image.tertiary = 'Karen, Teacher';
    image.alt = '';
    image.uri = '/p-335-lemon-basil-oolong.aspx';
    images.push(image);

    image = {};
    image.type = 'product';
    image.src = "/images/sampler.jpg";
    image.primary = 'Winter Survival Sampler';
	image.secondary = "Keep Warm this winter with our most popular cozy and spicy blends.";
    image.tertiary = " North Sea Blend, Winter Solstice, Smokey Chai, Cranberry Fireside, Mexican Spice, Organic Lemon Myrtle/Rooibos. $25.00";
    image.alt = '';
    image.uri = '/c-13-gifts.aspx';
    images.push(image);
	
	image.type = 'person';
    image.src = "/images/lifestyle/dan.jpg";
    image.primary = "Genmaicha";
    image.secondary = "&ldquo;My favorite green tea.  I like the straight forward clean taste with nutty, roasted flavor.  I drink it all day&rdquo;";
    image.tertiary = 'Dan, IT';
    image.alt = '';
    image.uri = '/p-172-genmaicha-tea.aspx';
    images.push(image);

    image = {};
    image.type = 'product';
    image.src = "/images/assam.jpg";
    image.primary = "Assam Sampler";
    image.secondary = "We have an excellent selection of 2nd flush Assam's in stock. Quantity is limited so we're offering a special sampler of four 2 oz teas.";
    image.tertiary = ' Assam Mokalbari, Assam Harmutty, Assam Nagrulli, Assam Sessa. $30.00';
    image.alt = '';
    image.uri = '/c-12-tea-samplers.aspx';
    images.push(image);
	
	image = {};
    image.type = 'person';
    image.src = "/images/lifestyle/tom.jpg";
    image.primary = "Emperor's Red";
    image.secondary = "&ldquo;Sipping Emperor's Red clears my mind and readies me for the day, like the sun clears away fog a morning hike.&rdquo;";
    image.tertiary = 'Tom, Water Quality Engineer';
    image.alt = '';
    image.uri = '/p-141-emperors-red.aspx';
    images.push(image);image = {};

    return lifestyle_shuffle(images);
}

