// JavaScript Document
  if(document.images) {
    pic = new Array();
    pic[1] = new Image();
    pic[1].src = "http://www.baruch.cuny.edu/careers/images/STARR-Choice.jpg";
	
	pic[2] = new Image();
    pic[2].src = "http://www.baruch.cuny.edu/careers/images/STARR-Choice-S-O.jpg";

	pic[3] = new Image();
    pic[3].src = "http://www.baruch.cuny.edu/careers/images/STARR-Choice-E-O.jpg";
	
	pic[4] = new Image();
    pic[4].src = "http://www.baruch.cuny.edu/careers/images/STARR-Choice-T-O.jpg";
  }
  
    function roll(source,target) {
    if(document.images) {
    document.images[source].src = pic[target].src;}
  }


