function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
	this.length = len;
}

ideas = new makeArray(5);
ideas[0] = "<p style=\"color: #000; font-size: 12px;\">\"The MedicalEdge team has helped me turn long hours running the business into more time to practice Orthopedics.\"</p><p align=right style=\"color: #000; font-size: 12px;\">- Robert Berry, D.O.</p>";
ideas[1] = "<p style=\"color: #000; font-size: 12px;\">\"MedicalEdge has helped me realize my financial dreams.\"</p><p align=right style=\"color: #000; font-size: 12px;\">- Odilon Alvarado, M.D.</p>";
ideas[2] = "<p style=\"color: #000; font-size: 12px;\">\"MedicalEdge has created a physician friendly working environment allowing me to focus on the practice of medicine while improving my compensation and reducing my headaches.\"</p><p align=right style=\"color: #000; font-size: 12px;\">- Donald Fowler, M.D.</p>";
ideas[3] = "<p style=\"color: #000; font-size: 12px;\">\"I would sign up again in a heartbeat.\"</p><p align=right style=\"color: #000; font-size: 12px;\">- Carlos Mijares, M.D.</p>";
ideas[4] = "<p style=\"color: #000; font-size: 12px;\">\"I would recommend that any physician, especially in solo practice, avail themselves of the expertise and services offered by this ethical and professional organization.\"</p><p align=right style=\"color: #000; font-size: 12px;\">- Steven D. Cohen, M.D.</p>";

function rand(n) {
	seed = (0x015a4e35 * seed) % 0x7fffffff;
	return (seed >> 16) % n;
}
        
var now = new Date()
var seed = now.getTime() % 0xffffffff