﻿var currentWord = "detail";
var currentPix = "ABC.gif";
var pixToLoad = "GIF72/" +  currentPix;
var cnt =0;
function setup()
{
		//document.getElementById["detailPix"].src = pixToLoad;
		document.getElementById("spanishArea").style.backgroundImage = 'url("GIF72/BLUE.gif")';
	toggleSpanish();
}
	

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

function setBig1()
{
	document.images["detailPix"].src ="Cafeteria-Routine-Adapted.gif";
	document.images["detailPix"].width =220;
	document.images["detailPix"].height =300;
	document.getElementById("cap").innerText = "Make a document by just typing in the text and hitting the Parse button ...adapt up to 500 words at once!";
}

function setBig2()
{
	document.images["detailPix"].src ="Compound-wds-5-Wksht.gif";
	document.images["detailPix"].width =361;
	document.images["detailPix"].height =285;
	document.getElementById("cap").innerText = "Make Worksheets easily!";
}

function setBig3()
{
	document.images["detailPix"].src ="Corey-the-Cook-Adapted.gif";
	document.images["detailPix"].width =300;
	document.images["detailPix"].height =300;
	document.getElementById("cap").innerText = "Classroom poems, daily instructions, curricular materials - Type, Click, DONE!";
}

function setBig4()
{
	document.images["detailPix"].src ="Grand-Canyon-5.gif";
	document.images["detailPix"].width =220;
	document.images["detailPix"].height =300;
	document.getElementById("cap").innerText = "Import Pictures just by copying and pasting!";
}

function setBig5()
{
	document.images["detailPix"].src ="pg4-Phonics-cards--sh.gif";
	document.images["detailPix"].width =375;
	document.images["detailPix"].height =300;
	document.getElementById("cap").innerText = "Flexible Communication Board options help you design flashcards that match your curriculum!";
}

function setBig6()
{
	document.images["detailPix"].src ="PIT-penguin-label-image-pap.gif";
	document.images["detailPix"].width =285;//361;
	document.images["detailPix"].height =285;
	document.getElementById("cap").innerText = "Science, social studies, history, math word problems, gym instruction, and... reading!";
}

function setBig7()
{
	document.images["detailPix"].src ="schedule-track.gif";
	document.images["detailPix"].width =212;
	document.images["detailPix"].height =285;
	document.getElementById("cap").innerText = "Schedules, behavior plans, social stories, every part of each day can be adapted in minutes.";
}

function setBig8()
{
	document.images["detailPix"].src ="Wild-Things-adapted.gif";
	document.images["detailPix"].width =235;
	document.images["detailPix"].height =300;
	document.getElementById("cap").innerText = "PixCards™ have many uses - as in the comprehension quiz.";
}

function setBig9()
{
	document.images["detailPix"].src ="feel.gif";
	document.images["detailPix"].width =381;
	document.images["detailPix"].height =285;
	document.getElementById("cap").innerText = "Communication Board - Feeling Something";
}

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

}


