var Pic = new Array();
Pic[0] = 'images/careers/careers-right-hdr1.jpg';
//Pic[1] = 'images/careers/careers-right-hdr2.jpg';
Pic[1] = 'images/careers/careers-right-hdr3.jpg';
Pic[2] = 'images/careers/careers-right-hdr4.jpg';
Pic[3] = 'images/careers/careers-right-hdr5.jpg';

var Quote = new Array();
Quote[0] = "&ldquo;It is very satisfying working at WSFS, and you can go home thinking, &lsquo;you know what&#63;&hellip;I did a good job today!&rsquo;...&rdquo;";
//Quote[1] = "&ldquo;Management lets me work on the things that I work best at!&rdquo;<br />&nbsp;";
Quote[1] = "&ldquo;WSFS gives you so much room to advance - in positions that specifically fit you as a person!&rdquo;";
Quote[2] = "&ldquo;I like it, I really enjoy working with people and that's the part about working at WSFS that I like the best!&rdquo;";
Quote[3] = "&ldquo;One of the primary benefits that I see in working for the bank at this time in my life, is that I get to interact with people of all ages!&rdquo;";

var p = Pic.length;
var j = Math.floor(Math.random() * p);

function showPicture() {
	document.write('<img src="' + Pic[j] + '" name="SlideShow" alt="" width="193" height="160"  />');
}

function showQuote() {
	document.write(Quote[j]);
}
