<!-- 
//  texts:
//  Your messages wich may contain regular html tags but 
//  must at least contain: [ <font color='{COLOR}'> ]
//  Use single quotes [ ' ] in your html only. If you need 
//  a double quote in the message itself use an escape 
//  sign like this: [ \" ]  (not including the brackets)

var texts = new Array(
	"<font color='{COLOR}' face='Lucida Grande'>&#8220;Do we choose to see those possibilities? Do we truly believe that they&#8217;re there?&#8221;</font>",
	"<font color='{COLOR}' face='Lucida Grande'>&#8220;Perception controls our reality and if we don&#8217;t believe it, we won&#8217;t see it.&#8221;</font>",
	"<font color='{COLOR}' face='Lucida Grande'>&#8220;We often place our focus on what we don't want.  And since we get more of what we focus on, what really happens?  We create more of what we don't want and don't even realize we're doing it.&#8221;</font>",
	"<font color='{COLOR}' face='Lucida Grande'>&#8220;By celebrating what&#8217;s right, we find the energy to fix what&#8217;s wrong.&#8221;</font>",
	"<font color='{COLOR}' face='Lucida Grande'>&#8220;The right vision. It keeps us open to possibilities, it gives us energy, and it makes us much more accepting of change.&#8221;</font>",
	"<font color='{COLOR}' face='Lucida Grande'>&#8220;When we believe it, we&#8217;ll see it.&#8221;</font>");

var bgcolor = "#AAD15C"; // background color, must be valid browser hex color (not color names)
var fcolor = "#000000";  // foreground or font color
var steps = 20; // number of steps to fade
var show = 8000; // milliseconds to display message
var sleep = 500; // milliseconds to pause inbetween messages
var loop = true; // true = continue to display messages, false = stop at last message
// -->