img2 = new Image()
seconds = "6";
function imgOne()
{
document.myimg.src = 'Images/CMC_sign_2_7_10.jpg';
setTimeout("imgTwo()", seconds * 1000);
}
function imgTwo()
{
document.myimg.src = 'Images/MCM_PRT.jpg';
setTimeout("imgThree()", seconds * 1000);
}
function imgThree()
{
document.myimg.src = 'Images/SBP_stuff_buns_sm.jpg';
setTimeout("imgFour()", seconds * 1000);
}
function imgFour()
{
document.myimg.src = 'Images/Bishop_PBrooks.jpg';
setTimeout("imgOne()", seconds * 1000);
}

