//Lesliesnacks.com
//Author: Jason Tablante
//http://www.lesliesnacks.com
//Script for the rollovers in the pages and navigation layers

function on(image){
	imagesrc = eval(image + '_on.src');
	document.captionbox.src = imagesrc;
}

function off(image){
	imagesrc = eval(image + '_off.src');
	document.captionbox.src = imagesrc;
}

function popup(filename, thewindow, thewidth, theheight, thescrollbar){
var attributes = "width=" + thewidth + ",height=" + theheight + ",scrollbars=" + thescrollbar + ",resizable=0,status=1";
window.open(filename, thewindow, attributes);
}