<!--
//xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Images array

		MyImages=new Array(); 
		MyImages[0]='../images/MAXYellow.jpg';       						//MAX employment

		MyImages[1]='../images/ChamberC.gif';       						//Chamber of Commerce

		MyImages[2]='../images/repsLogoWelcome.jpg'; 						//REPS Logo

		MyImages[3]='../images/deddi.jpg';          						 //DEEDI
		
		MyImages[4]='../images/BT.jpg';										//Boystown
		
		MyImages[5]='../images/cea3.jpg';		    						//Career Employment Australia
		
		MyImages[6]='../images/centcsmall.jpg';		    					//Centacare Employment Group
		
		MyImages[7]='../images/qldGovsmall.jpg';		    				//Employment Support Services
		
		MyImages[8]='../images/bulletinLogo100.jpg';		    			//Bayside Bulleten
		
		MyImages[9]='../images/bussGrow.gif';		    					//Business Grow
		
		MyImages[10]='../images/tourism.jpg';		   				 //Tourism
		
		MyImages[11]='../images/SmallBusinessSolutionsLogo.gif';		    //Small Business Solution
		
		MyImages[12]='../images/Redland City Retail2.jpg';		    //Redland City Retail Association
		
//xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Text array		

		Messages=new Array()

		Messages[0]='Finding Jobs, Changing Lives. MAX Employment is dedicated to \‘finding jobs, changing lives\’. This year we will help more than 150,000 Australians achieve lifestyle and job related goals.'; //xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Max Employment

		Messages[1]='The strength of the Chamber is directly related to the membership base. The greater the membership, the stronger the voice.'; //xxxx Chamber of Commerce

		Messages[2]='REPS provides direct and indirect employment assistance to the people of the Redlands.' //xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx REPS message

		Messages[3]='Queensland Government\’s Department of Employment, Economic Development & Innovation (DEEID)';  //xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx DEEDI
		
		Messages[4]='BoysTown specialises in helping young people get a job. We understand each person has dreams and faces unique challenges on their way to making those dreams a reality. Our team works one-on-one with young people to map out ways to help them meet their goals.BoysTown has close to 50 years experience helping young people.Our services are free.';
                   // xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Boystown

		Messages[5]='Assisting Job Seekers since 1980';  //xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Career Employment Australia
		
		Messages[6]='Centacare seeks to provide excellent, respectful and caring services, which facilitates healing and encourages all persons to develop to their fullest potential';  			                   //xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Centacare Employment Group
		
		Messages[7]='Employment Support Services for Jobseekers. If you have lost your job or are looking for employment there is assistance you can access.';
		                                     	    //xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Employment Support Services
		
		Messages[8]='Bayside Bulletin supporting the Redlands. Any community should have a strong relationship with its local newspaper.';  //xxxxxxxxxxxxx Bayside Bulleten 											
													
		Messages[9]='Assisting and Advising Local Businesses. Redland City Business Grow is a free and confidential business advisory and mentoring service provided by Redland City Council to small and medium business. This program assists local business to expand their operation, create more jobs, improve local business sustainability, lift business performance and diversify the local economic base. ';  //xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Business Grow 
		
		Messages[10]='Redlands & Stradbroke Tourism - All roads lead to the Bay in the Redlands, passing through a diverse landscape that ranges from glistening beaches to mountain tops. It is a region steeped in history which offers plenty to see and do.';  //xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 	Contact First										
		
		Messages[11]='It’s affordable, it\’s targeted and most importantly, it gets results!';  //xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx  Small Business Solution 											

		Messages[12]='Redland City Retail Association. Dedicated to Developing Retailing in the Redlands';  //xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx  Redland City Retail Association
		
		

		pic=0;
		msg=0;
		function RunSlideShow(ForwardBack)
		{
		if (document.images)
			{
			pic = pic + ForwardBack;
			
				if (pic>(MyImages.length -1))
				{
				pic=0;
				}
				if (pic<0)
				{
				pic=MyImages.length -1;
				
				}
			document.theImage.src = MyImages[pic];
				}
		}

		function RunSlideShow2(ForwardBack)
		{
		msg = msg + ForwardBack;
				if (msg>(Messages.length -1))
				{
				msg=0;
				}
				if ( msg<0)
				{
				msg=Messages.length -1;
				}
			document.getElementById('AdvertisementsTextbox').innerHTML = Messages[msg];
			
		}
		function stopper()
		{
			if (document.test.automatic.checked)
			{
				clearTimeout(timer);
			}
		}
		function automaticly()
		{
			if (!document.test.automatic.checked)
				{
				if (pic<MyImages.length -1)
					{
					pic++;
					}
				else
					{
					pic=0;
					}
				if(msg<Messages.length -1)
					{
					msg++;
					}
				else
					{
					msg=0;
					}		
				document.theImage.src = MyImages[pic];
				document.getElementById('AdvertisementsTextbox').innerHTML = Messages[msg];
				timer = setTimeout("automaticly()",6000);
			}
		}

-->
