/******************************
  Random Refresh
*******************************/

G_total_sa = 0;                                 // total random elements
G_day = new Date();                             // date for seed
G_seed = G_day.getTime();                       // G_seed for random number

ae_('<img src="http://test.jbasil.com/wp-content/themes/starkers/style/images/background_1.jpg" alt="Heather Lawrenz Jewelry" />');
ae_('<img src="http://test.jbasil.com/wp-content/themes/starkers/style/images/background_2.jpg" alt="Heather Lawrenz Jewelry" />');


// Create image/link object array
function ae_ (description) {
        G_total_sa++;
        sa [G_total_sa] = description;
}

// Create a random number from 1 to total number of array elements
function rand() {
  RN = parseInt(((G_seed - (parseInt(G_seed/1000,10) * 1000))/10)/100*G_total_sa + 1,10);
  return RN;
}

// Create a random number from 1 to num
function randNum(num) {
  RandN = parseInt(((G_seed - (parseInt(G_seed/1000,10) * 1000))/10)/100*num + 1,10);
  return RandN;
}

// Create the image/link object array
function sa () {}