/*
	filename: action.js
	This file is used to display the scolling messages above the drop-down list
	supporting files: main.html, index.html, 

*/


var scrollMsg = "Did you know... All 2010 decals will fit 2012 Mustangs... same body style!"
var msgSpace = "---   ---"
var beginPos = 0
function scrollingMsg() {
    document.msgForm.scrollingMsg.value =
		scrollMsg.substring(beginPos, scrollMsg.length) + msgSpace + scrollMsg.substring(0, beginPos);
    beginPos = beginPos + 1
    if (beginPos > scrollMsg.length) {
        beginPos = 0
    }
    window.setTimeout("scrollingMsg()", 200)
}//end scrollingMsg

var notices = new Array("notice1.jpg","notice2.jpg","notice3.jpg","notice4.jpg","notice5.jpg");
var ntcCount = 0;
function noticeCycle()
{
	ntcCount = ntcCount + 1;
	if (ntcCount == 5)
	{
		ntcCount = 0;
	}
	document.Notice.src = notices[ntcCount];
	setTimeout("noticeCycle()",3000);
} //end noticeCycle

