// JavaScript Document

// Randomly loads one of the quotes gif images

var image_location = 'assets/img';
var image_names = ['sky_quote_01','sky_quote_02','sky_quote_03','sky_quote_04','sky_quote_05','sky_quote_06','sky_quote_07','sky_quote_08','sky_quote_09','sky_quote_10'];

var chosen_image = image_names[Math.floor(Math.random() * image_names.length)];
document.getElementById('img_quote').src = image_location+'/'+chosen_image+'.jpg';
