// panFora Screenshots script for user side

var base = "../../images/screenshots/";
var icobase = "../../images/";
var scrCurrent = 1;

function initScreenshots() {
	// Small Screen shots
	scr = new Array(base + "01.snap_framed_nov_sm.gif",
					base + "02.snap_framed_ex_sm.gif",
					base + "03.snap_post_sm.gif",
					base + "04.snap_reply_sm.gif",
					base + "05.snap_useroptions_sm.gif",
					base + "06.snap_userprofile_sm.gif");
	
	// Captions
	cap = new Array(base + "01.snap_framed_nov_blurb.gif",
					base + "02.snap_framed_ex_blurb.gif",
					base + "03.snap_post_blurb.gif",
					base + "04.snap_reply_blurb.gif",
					base + "05.snap_useroptions_blurb.gif",
					base + "06.snap_userprofile_blurb.gif");
	
	// Full size screen shots
	ful = new Array(base + "01.snap_framed_nov.gif",
					base + "02.snap_framed_ex.gif",
					base + "03.snap_post.gif",
					base + "04.snap_reply.gif",
					base + "05.snap_useroptions.gif",
					base + "06.snap_userprofile.gif");
	
	icoup = new Array(icobase + "01_up.gif",
					icobase + "02_up.gif",
					icobase + "03_up.gif",
					icobase + "04_up.gif",
					icobase + "05_up.gif",
					icobase + "06_up.gif");
					
	icodn = new Array(icobase + "01_dn.gif",
					icobase + "02_dn.gif",
					icobase + "03_dn.gif",
					icobase + "04_dn.gif",
					icobase + "05_dn.gif",
					icobase + "06_dn.gif");
					
	
	// Preload images - but not ful as they will take too long.
	scrPreload(scr);
	scrPreload(cap);
	scrPreload(icoup);
	scrPreload(icodn);
	
	var preload = new Image();
	preload.src = icobase + "arrow_bl_back.gif";
}
