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: #003399; font-size: 12px;\">\"MERG’s experience, expertise and service combine for unparalleled results.  They are the benchmark in physician recruitment.\"</p><p align=right style=\"color: #003399; font-size: 12px;\"><br>- Doug O'Ryan<br>Manager, Physician Recruitment<br> St. Joseph's Medical Center</p>";
ideas[1] = "<p style=\"color: #003399; font-size: 12px;\">\"MERG is not only knowledgeable about the recruitment marketplace but also understands the importance of providing consultative information prior to commencing a new recruitment effort.\"</p><p align=right style=\"color: #003399; font-size: 12px;\"><br>- Nam Lee, MD<br>Medical Director</p>";
ideas[2] = "<p style=\"color: #003399; font-size: 12px;\">\"I am pleased to write a letter of recommendation for MedicalEdge Recruiting Group. They have been able to provide quality candidates for a difficult search and have communicated their progress on a regular basis...\"</p><p align=right style=\"color: #003399; font-size: 12px;\"><br>- Terry Phillips<br>Crouse Hospital</p>";
ideas[3] = "<p style=\"color: #003399; font-size: 12px;\">\"I'm a physician who has had the pleasure of doing business with MERG and their team. There are not many things that impress me, but I am with what they have had to offer me. They consulted me and worked with me through me and my family’s thought process about an opportunity and turned my big 'NO' to top of the list choice. I hope you know the impact MERG and their team have made...\"</p><p align=right style=\"color: #003399; font-size: 12px;\"><br>- Lama Hashish<br> M.D.</p>";
ideas[4] = "<p style=\"color: #003399; font-size: 12px;\">\"I'm a physician who has had the pleasure of doing business with MERG and their team. There are not many things that impress me, but I am with what they have had to offer me. They consulted me and worked with me through me and my family’s thought process about an opportunity and turned my big 'NO' to top of the list choice. I hope you know the impact MERG and their team have made...\"</p><p align=right style=\"color: #003399; font-size: 12px;\"><br>- Lama Hashish<br> M.D.</p>";

function rand(n) {
	seed = (0x015a4e35 * seed) % 0x7fffffff;
	return (seed >> 16) % n;
}
        
var now = new Date()
var seed = now.getTime() % 0xffffffff