Event.observe(window, 'load', function() {

  if ($('random_block')) {
    var r_block = $('random_block');
    var r_image = $('random_image');
    var r_caption = $('random_caption');
    var r_link = $('random_link');

    var options = [
      ['1234', 'NEW! Ornaments 4 Star/Dala Horse', 'kits', '1234'],
      ['1234', 'NEW! Ornaments 4 Star/Dala Horse', 'kits', '1234'],
      ['1233', 'NEW! Ornaments 3 Hearts/Tree', 'kits', '1233'],
      ['1233', 'NEW! Ornaments 3 Hearts/Tree', 'kits', '1233'],
      ['1232', 'NEW! Ornaments 2 Poinsettia/Cross', 'kits', '1232'],
      ['1232', 'NEW! Ornaments 2 Poinsettia/Cross', 'kits', '1232'],
      ['1231', 'NEW! Ornaments 1 Snowflakes', 'kits', '1231'],
      ['1231', 'NEW! Ornaments 1 Snowflakes', 'kits', '1231'],
      ['1229', 'NEW! Inspiration 4', 'chartpacks', '1229'],
      ['1229', 'NEW! Inspiration 4', 'chartpacks', '1229'],
      ['1227', 'Starflower Table Runner Kit', 'kits', '1227'],
      ['1228', 'Alphabet Afghan', 'chartpacks', '1228'],
      ['1218', 'Hibiscus Tablecloth', 'chartpacks', '1218'],
      ['1225', 'Vintage Lace', 'chartpacks', '1225'],
      ['1226', 'Kate\'s Garden', 'chartpacks', '1226'],
//      ['1211', 'Snowflakes Table Topper Kit', 'kits', '1211'],
      ['1212', 'Heart Strings Table Topper', 'chartpacks', '1212'],
      ['1213', 'Water Lilies Pillow Kit', 'kits', '1213'],
      ['1214', 'Stargazer Lily Pillow Kit', 'kits', '1214'],
      ['1215', 'Winter Lily Pillow Kit', 'kits', '1215'],
      ['1219', 'Trumpet Lily Pillow Kit', 'kits', '1219'],
      ['1220', 'Lily Cross Pillow Kit', 'kits', '1220'],
      ['1221', 'Lily of the Valley Pillow Kit', 'kits', '1221'],
      ['1203a', 'Dogwood', 'chartpacks', '1203'],
      ['1205b', 'Everything\'s Coming Up Tulips', 'chartpacks', '1205'],
      ['1205c', 'Everything\'s Coming Up Tulips', 'chartpacks', '1205'],
      ['1209a', 'Building Blocks and Lace', 'chartpacks', '1209']
//      ['1200', 'Easy Does It, Swedish Weave Towels Booklet', 'books', '1200'],
//      ['1207', 'Rolling Hills Runner', 'chartpacks', '1207'],
//      ['1208', 'Welcome Bell Pull', 'chartpacks', '1208'],
//      ['1209', 'Building Blocks and Lace', 'chartpacks', '1209'],
//      ['1210', 'Carousel Pillows', 'chartpacks', '1210'],
//      ['1217', 'Cobblestone Runner', 'chartpacks', '1217'],
//      ['1216', 'Merry Christmas Heard Around the World Bell Pull', 'chartpacks', '1216'],
//      ['1222', 'Christmas Trees', 'chartpacks', '1222'],
//      ['1224', 'Starburst', 'chartpacks', '1224'],
//      ['1223', 'Desert Rose', 'chartpacks', '1223'],
//      ['1204', 'White Mountain Runner Kit', 'kits', '1204'],
    ];
    pick = options[Math.floor(options.length * Math.random())];

    r_image.src = "images/products/"+pick[0]+".jpg";
    r_caption.innerHTML = pick[1];
    r_link.href = pick[2]+".html#"+pick[3];
  } 
}, false);

