// JavaScript Document
function homeImages_DoFSCommand(command, args) { 
	var thisItem=("item"+args);
	if (args==1){
		lastItem="item4";
	} else { lastItem="item"+(args-1);}
	thisItem=document.getElementById(thisItem);
	lastItem=document.getElementById(lastItem);
	thisItem.className="current";
	lastItem.className="";
}

