// --------- betejuices composite weather 'graphic' variables -----------------------
/* this file (if required) needs to be included in the page <head> ... </head> tags,
   together with betelcast.js BEFORE betel_cumulus_ajax.js
   same sort of logic could be used to produce icons
   and you may want to include arrays for day / night, wintry conditions
*/ 

/* decide / define forecast graphic / text
    we are using the NUMBER of the zambretti forecast array, to declare our variables
    doing each array in turn for clarity
*/
var here = 'http://www.wheelocknet.net/betel/';  // URL PATH to the 'AJAX' directory (include trailing / )

var condition_img = new Array();	// beteljuice 'weather map' graphic overlay
var condition_txt = new Array();	// beteljuice 'weather map' forecast text overlay


// -- define arrays content

// Settled fine - 'default' zambretti text - array(number)[0]
condition_img[0] = "";	// my default pic is clear / fine
condition_txt[0] = "Settled fine";

// Fine weather
condition_img[1] = "";	// my default pic is clear / fine
condition_txt[1] = "Fine weather";

// Becoming fine
condition_img[2] = "stuff/beteljuice_cloud.png";
condition_txt[2] = "Change <img src =\"http://www.wheelocknet.net/betel/stuff/thumb_up.gif\" />";

// Fine, becoming less settled
condition_img[3] = "stuff/beteljuice_cloud.png";
condition_txt[3] = "Change <img src =\"http://www.wheelocknet.net/betel/stuff/thumb_down.gif\" />";

// Fine, possible showers
condition_img[4] = "stuff/beteljuice_shower.gif";
condition_txt[4] = "Showers";

// Fairly fine, improving
condition_img[5] = "stuff/beteljuice_cloud.png";
condition_txt[5] = "Change <img src =\"http://www.wheelocknet.net/betel/stuff/thumb_up.gif\" />";

// Fairly fine, possible showers early
condition_img[6] = "stuff/beteljuice_shower.gif";
condition_txt[6] = "Showers <img src =\"http://www.wheelocknet.net/betel/stuff/thumb_up.gif\" />";

// Fairly fine, showery later
condition_img[7] = "stuff/beteljuice_shower.gif";
condition_txt[7] = "Showers <img src =\"http://www.wheelocknet.net/betel/stuff/thumb_down.gif\" />";

// Showery early, improving
condition_img[8] = "stuff/beteljuice_shower.gif";
condition_txt[8] = "Showers <img src =\"http://www.wheelocknet.net/betel/stuff/thumb_up.gif\" />";

// Changeable, mending
condition_img[9] = "stuff/beteljuice_cloud.png";
condition_txt[9] = "Change <img src =\"http://www.wheelocknet.net/betel/stuff/thumb_up.gif\" />";

// Fairly fine, showers likely
condition_img[10] = "stuff/beteljuice_shower.gif";
condition_txt[10] = "Showers";

// Rather unsettled clearing later
condition_img[11] = "stuff/beteljuice_cloud.png";
condition_txt[11] = "Change <img src =\"http://www.wheelocknet.net/betel/stuff/thumb_up.gif\" />";

// Unsettled, probably improving
condition_img[12] = "stuff/beteljuice_cloud.png";
condition_txt[12] = "Change";

// Showery, bright intervals
condition_img[13] = "stuff/beteljuice_shower.gif";
condition_txt[13] = "Showers";

// Showery, becoming less settled
condition_img[14] = "stuff/beteljuice_shower.gif";
condition_txt[14] = "Showers <img src =\"http://www.wheelocknet.net/betel/stuff/thumb_down.gif\" />";

// Changeable, some rain
condition_img[15] = "stuff/beteljuice_rainy.gif";
condition_txt[15] = "Change";

// Unsettled, short fine intervals
condition_img[16] = "stuff/beteljuice_cloud.png";
condition_txt[16] = "Change";

// Unsettled, rain later
condition_img[17] = "stuff/beteljuice_rainy.gif";
condition_txt[17] = "Change <img src =\"http://www.wheelocknet.net/betel/stuff/thumb_down.gif\" />";

// Unsettled, some rain
condition_img[18] = "stuff/beteljuice_rainy.gif";
condition_txt[18] = "Rainy";

// Mostly very unsettled
condition_img[19] = "stuff/beteljuice_shower.gif";
condition_txt[19] = "Unsettled";

// Occasional rain, worsening
condition_img[20] = "stuff/beteljuice_rainy.gif";
condition_txt[20] = "Change <img src =\"http://www.wheelocknet.net/betel/stuff/thumb_down.gif\" />";

// Rain at times, very unsettled
condition_img[21] = "stuff/beteljuice_rainy.gif";
condition_txt[21] = "Unsettled";

// Rain at frequent intervals
condition_img[22] = "stuff/beteljuice_rainy.gif";
condition_txt[22] = "Rainy";

// Rain, very unsettled
condition_img[23] = "stuff/beteljuice_rainy.gif";
condition_txt[23] = "Unsettled";

// Stormy, may improve
condition_img[24] = "stuff/beteljuice_storm2.gif";
condition_txt[24] = "STORM ALERT";

// Stormy, much rain
condition_img[25] = "stuff/beteljuice_storm2.gif";
condition_txt[25] = "STORM ALERT";

