// javascript random rollover
			// written by Joe Maller, 1997
			// part of the "Simplest Possible JavaScripts" at
			// http://www.joemaller.com 
			// this is free to use, but please give me credit,
			// and let me know where it goes
			
				roller= new Array()
				roller[1]= new Image(246,236)
				roller[1].src ='/Style Library/CNT_Images/didYouKnow1.gif'
				roller[2]= new Image(246,236)
				roller[2].src ='/Style Library/CNT_Images/didYouKnow3.gif'
				roller[3]= new Image(246,236)
				roller[3].src ='/Style Library/CNT_Images/didYouKnow4.gif'
				roller[4]= new Image(246,236)
				roller[4].src ='/Style Library/CNT_Images/didYouKnow5.gif'
				roller[5]= new Image(246,236)
				roller[5].src ='/Style Library/CNT_Images/didYouKnow6.gif'
				roller[6]= new Image(246,236)
				roller[6].src ='/Style Library/CNT_Images/didYouKnow7.gif'
				roller[7]= new Image(246,236)
				roller[7].src ='/Style Library/CNT_Images/didYouKnow8.gif'
				roller[8]= new Image(246,236)
				roller[8].src ='/Style Library/CNT_Images/didYouKnow9.gif'
				roller[9]= new Image(246,236)
				roller[9].src ='/Style Library/CNT_Images/didYouKnow10.gif'
				roller[10]= new Image(246,236)
				roller[10].src ='/Style Library/CNT_Images/didYouKnow11.gif'
				roller[11]= new Image(246,236)
				roller[11].src ='/Style Library/CNT_Images/didYouKnow12.gif'
				roller[12]= new Image(246,236)
				roller[12].src ='/Style Library/CNT_Images/didYouKnow13.gif'


				
			
				
				showthis=0 				//prepares the repeat-preventing variable
				
				function RandomSwapOut() {		
				
										//the next three lines help prevent repeating images
										
						oldroller = new Array()
						oldroller[2] = oldroller[1]
						oldroller[1] = showthis
						
										//the next line chooses the number to use in selecting the image
						
						showthis = parseInt((Math.random()*(roller.length-1))+1);	
						
										//the next two lines help prevent repeating images
						
						if (showthis == oldroller[1]) {RandomSwapOut();}
						if (showthis == oldroller[2]) {RandomSwapOut();}
						
										//the next line replaces the image with the new, random image
						
						document.Ritalin.src = roller[showthis].src; return true;	
				}


				function SwapBack() {		
					document.Ritalin.src = "/Style Library/CNT_Images/blank.gif"; return true;	
				}
// -->


// javascript random rollover
			// written by Joe Maller, 1997
			// part of the "Simplest Possible JavaScripts" at
			// http://www.joemaller.com 
			// this is free to use, but please give me credit,
			// and let me know where it goes
			
				roller2= new Array()
				roller2[1]= new Image(246,236)
				roller2[1].src ='/Style Library/CNT_Images/didYouKnow1.gif'
				roller2[2]= new Image(246,236)
				roller2[2].src ='/Style Library/CNT_Images/didYouKnow3.gif'
				roller2[3]= new Image(246,236)
				roller2[3].src ='/Style Library/CNT_Images/didYouKnow4.gif'
				roller2[4]= new Image(246,236)
				roller2[4].src ='/Style Library/CNT_Images/didYouKnow5.gif'
				roller2[5]= new Image(246,236)
				roller2[5].src ='/Style Library/CNT_Images/didYouKnow6.gif'
				roller2[6]= new Image(246,236)
				roller2[6].src ='/Style Library/CNT_Images/didYouKnow7.gif'
				roller2[7]= new Image(246,236)
				roller2[7].src ='/Style Library/CNT_Images/didYouKnow8.gif'
				roller2[8]= new Image(246,236)
				roller2[8].src ='/Style Library/CNT_Images/didYouKnow9.gif'
				roller2[9]= new Image(246,236)
				roller2[9].src ='/Style Library/CNT_Images/didYouKnow10.gif'
				roller2[10]= new Image(246,236)
				roller2[10].src ='/Style Library/CNT_Images/didYouKnow11.gif'
				roller2[11]= new Image(246,236)
				roller2[11].src ='/Style Library/CNT_Images/didYouKnow12.gif'
				roller2[12]= new Image(246,236)
				roller2[12].src ='/Style Library/CNT_Images/didYouKnow13.gif'

				
			
				
				showthis=0 				//prepares the repeat-preventing variable
				
				function RandomSwapOut2() {		
				
										//the next three lines help prevent repeating images
										
						oldroller2 = new Array()
						oldroller2[2] = oldroller2[1]
						oldroller2[1] = showthis
						
										//the next line chooses the number to use in selecting the image
						
						showthis = parseInt((Math.random()*(roller2.length-1))+1);	
						
										//the next two lines help prevent repeating images
						
						if (showthis == oldroller2[1]) {RandomSwapOut2();}
						if (showthis == oldroller2[2]) {RandomSwapOut2();}
						
										//the next line replaces the image with the new, random image
						
						document.Ritalin2.src = roller2[showthis].src; return true;	
				}


				function SwapBack2() {		
					document.Ritalin2.src = "/Style Library/CNT_Images/blank.gif"; return true;	
				}
// -->


