
// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "<div class='ourmodes facetoface'><h4>Face to Face</h4><p>Meet your colleagues and faculty, and engage in socially rich and interactive methods.</p><p><a href='multi-modal-programs/learning-modes.html' class='more_link'>More</a></p></div>";
Quotation[1] = "<div class='ourmodes webconf'><h4>Web Conference</h4><p>Join your team online for an interactive live session with the educator.</p><p><a href='multi-modal-programs/learning-modes.html' class='more_link'>More</a></p></div>";
Quotation[2] = "<div class='ourmodes podcast'><h4>Video Podcast</h4><p>Learn on-the-go with visually engaging presentations from the educator delivered to your PC or to your iPod.</p><p><a href='multi-modal-programs/learning-modes.html' class='more_link'>More</a></p></div>";
Quotation[3] = "<div class='ourmodes discussion'><h4>Discussion Board</h4><p>Collaborate asynchronously with your team and the educator.</p><p><a href='multi-modal-programs/learning-modes.html' class='more_link'>More</a></p></div>";
Quotation[4] = "<div class='ourmodes library'><h4>Virtual Library</h4><p>Reference online supplemental learning material, such as cases, readings and videos.</p><p><a href='multi-modal-programs/learning-modes.html' class='more_link'>More</a></p></div>";
Quotation[5] = "<div class='ourmodes action'><h4>Action Learning</h4><p>Learn to create new solutions to real world problems as a part of a distributed team.</p><p><a href='multi-modal-programs/learning-modes.html' class='more_link'>More</a></p></div>";

// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}