var arr_my_list = new Array()
arr_my_list[1] = "&quot;Let yourself be silently drawn by the stronger pull of what you really love&quot; -Rumi"
arr_my_list[2] = "&quot;We do not see things as they are. We see them as we are.&quot; -The Talmud"
arr_my_list[3] = "&quot;Let yourself be silently drawn by the stronger pull of what you really love&quot; -Rumi"
arr_my_list[4] = "&quot;We do not see things as they are. We see them as we are.&quot; -The Talmud"
arr_my_list[5] = "&quot;Let yourself be silently drawn by the stronger pull of what you really love&quot; -Rumi"


function WriteQuote() 
{  var num = arr_my_list.length - 1;
   var randnum = Math.random();
   rand1 = Math.round((num - 1) * randnum) + 1;
   document.write(arr_my_list[rand1])
}
