<!-- Hide script from old browsers


function processPrevious() {
        if (document.images) {
                if (thisPic==0) //if at the very beginning of array
                {
                    thisPic=lastPic; //goto the last cell in the array
                 }
                 else 
                 {
                    thisPic--; //else simply decrement the counter                    
                 }
				if (document.layers) {
					document.NavLayer.document.myPicture.src=cnnPix[thisPic].src;
				}
				else {
					document.myPicture.src=cnnPix[thisPic].src;
				}
                  
        }
}

function processNext() {
        if (document.images) {
                if (thisPic==lastPic) //if at the very end of the array
                {
                    thisPic=0; //goto the first cell of the array
                 }
                 else 
                 {
                thisPic++; //else simply increment the counter
                }
				if (document.layers) {
					document.NavLayer.document.myPicture.src=cnnPix[thisPic].src;
				}
				else {
					document.myPicture.src=cnnPix[thisPic].src;
				}
        }
}


//End hiding script from old browsers -->
