﻿var cnt =0;
function setup()
{
	toggleSpanish();
}
	

function toggleSpanish()
{
	if ((cnt%2) == 0) {
		document.images["spanish1"].src ="spanish.gif";
	}
	else {
		document.images["spanish1"].src	= "espa.gif";
	}
	cnt++;
}

function setBig1()
{
	document.images["detailPix"].src ="ReadBook.png";
	document.images["detailPix"].width =380;
	document.images["detailPix"].height =300;
	document.getElementById("cap").innerText = "Really easy and fun!\n\n The new 4 button word banks can be used for phrases as well as single words.";
}

function setBig2()
{
	document.images["detailPix"].src ="TW-win.png";
	document.images["detailPix"].width =400;
	document.images["detailPix"].height =300;
	document.getElementById("cap").innerText = "Now it is easier than ever to find just the right picture support for your students.\n\nEasily import pictures or use the new LSP Thesaurus to find the best graphic example for the target word in the document.";
}

function setBig3()
{
	document.images["detailPix"].src ="PW-spelling-test.png";
	document.images["detailPix"].width =398;
	document.images["detailPix"].height =300;
	document.getElementById("cap").innerText = "Pick to correct spelling to go with the picture.";
}

function setBig4()
{
	document.images["detailPix"].src ="twinkle.png";
	document.images["detailPix"].width =398;
	document.images["detailPix"].height =300;
	document.getElementById("cap").innerText = "Write about the subjects the class studies.";
}

function setBig5()
{
	document.images["detailPix"].src ="math-1-10.png";
	document.images["detailPix"].width =358;
	document.images["detailPix"].height =300;
	document.getElementById("cap").innerText = "Learning about Numbers";
}

function setBig6()
{
	document.images["detailPix"].src ="end-of-day.png";
	document.images["detailPix"].width =198;
	document.images["detailPix"].height =300;
	document.getElementById("cap").innerText = "End of day schedule.";
}

function setBig7()
{
	document.images["detailPix"].src ="GroceryList.png";
	document.images["detailPix"].width =358;
	document.images["detailPix"].height =300;
	document.getElementById("cap").innerText = "Write a grocery list.  Make choices.";
}

function setBig8()
{
	document.images["detailPix"].src ="careers.png";
	document.images["detailPix"].width =359;
	document.images["detailPix"].height =300;
	document.getElementById("cap").innerText = "Thinking about careers.";
}

function setBlank()
{
	document.images["pixBig"].src ="GIF72/BLANK.gif";

}


