/*

 * randimg.js :: md@northwestern-edu
 * Web Communications :: Northwestern University

To add a new image, you need 2 things:
1. A 307 x 136 image
2. Text for the image... must not contain apostrophe (') or qutoe (")
	(if you must, use &rsquo; instead of ' and &quot; instead of ")
	(i.e. "You&rsquo;re choosing a law school and a community.")

You can store/upload the images anywhere you want.
"/nuit/images/rotimg/" is what we've used thus far.

3. Add a new line like this:
add_image("url", "caption");

Your image URL can be root-relative or document-realtive.
If you don't know what that means, just store the images
in "/nuit/images/rotimg/" and form all of your URLs like this:
"/nuit/images/rotimg/MYIMAGE.gif"
*/

var base_rotimg_url = "http://www.it.northwestern.edu/shared/nuit/images/rotimg/";

add_image(base_rotimg_url+"rotimg01.jpg", "Two women looking at a laptop.");
add_image(base_rotimg_url+"rotimg02.jpg", "Two women sitting using a laptop.");
add_image(base_rotimg_url+"rotimg04.jpg", "A group of staff using IT.");
add_image(base_rotimg_url+"rotimg05.jpg", "A group of students using IT.");
add_image(base_rotimg_url+"rotimg06.jpg", "Two students using computers in a smart classroom.");
add_image(base_rotimg_url+"rotimg07.jpg", "Two students sitting using a laptop.");
add_image(base_rotimg_url+"rotimg08.jpg", "A faculty/staff member working at her desk.");
add_image(base_rotimg_url+"rotimg09.jpg", "A faculty/staff member using wireless access.");
add_image(base_rotimg_url+"rotimg10.jpg", "A woman reclining using a laptop.");
