var defaultimage = 1;

var deftext  = '<table height="255"><tr><td valign="middle"><p style="font-size:14px;">Read inside what schools say about Images <a href="javascript:;" onclick="getimage(\'next\');">school art exhibitions</a>... </p></td></tr></table>';

var deftext1 = '<table height="255"><tr><td valign="middle"><p style="font-size:14px;">&quot;The buzz in the school all day was memorable and everybody had a great time. The fact that all the hard work was done for us made it all the better. If only everything that worked so well was so easy!!&quot;</p><p style="font-size:14px;"><strong>Betty Glynn</strong><br />Kilcar N.S.</p></td></tr></table>';

var deftext2 = '<table height="255"><tr><td valign="middle"><p style="font-size:14px;">&quot;The exhibition was very professional with pupil\'s work beautifully exhibited. The children enjoyed the presentation of their work which was tastefully exhibited among different abilities. The organisation of the event was professional and well staffed.&quot;</p><p style="font-size:14px;"><strong>Anthony Williams</strong><br />Termonfeckin N.S.</p></td></tr></table>';

var deftext3 = '<table height="255"><tr><td valign="middle"><p style="font-size:14px;">"Certainly the most beneficial and worthwhile project offered by an outside agency, ever undertaken by the school. The parents were amazed at the quality of work and the professional exhibiting helped greatly. Great value for money."</p><p style="font-size:14px;"><strong>Joe O\'Gallachoir</strong><br />Gaelscoil Ultan, Monaghan</p></td></tr></table>';

var deftext4 = '<table height="255"><tr><td valign="middle"><p style="font-size:14px;">"The exhibition was a marvellous success. It gave the children an opportunity to freeze-frame a stage in their childhood which will undoubtedly be revisited in years to come.”</p><p style="font-size:14px;"><strong>Fergal Collins</strong><br />St. Francis Xavier Senior School, Castleknock</p></td></tr></table>';

var deftext5 = '<table height="255"><tr><td valign="middle"><p style="font-size:14px;">&quot;Not a negative comment to be heard. Nothing but positive reaction from all concerned. The \'feelgood\' factor for children and parents alike was a pleasure to experience.&quot;</p><p style="font-size:14px;"><strong>Martin Kennedy</strong><br />Skreen N.S.</p></td></tr></table>';

var deftext6 = '<table height="255"><tr><td valign="middle"><p style="font-size:14px;">&quot;This was a very professional exercise that raised the profile of the school, increased the self esteem of the pupil artists & contributed towards the Visual Arts programme in the school.&quot;</p><p style="font-size:14px;"><strong>Patrick Mc Dwyre</strong><br />Scoil Mhuire Glenties, Co. Donegal</p></td></tr></table>';

var deftext7 = '<table height="255"><tr><td valign="middle"><p style="font-size:14px;">&quot;The Images exhibition was an outstanding success. It was the focal point of a week long "Art Attack" week in the school. The looks of pride on the children\'s faces was evidence of how successful the exhibition was.&quot;</p><p style="font-size:14px;"><strong>David Oliver</strong><br />Ballyraine N.S. Letterkenny</p></td></tr></table>';

var deftext8 = '<table height="255"><tr><td valign="middle"><p style="font-size:14px;">&quot;Thoroughly enjoyed by all. The children took great pride in what they had created & it gave them the inspiration to do more.&quot;</p><p style="font-size:14px;"><strong>Sylvia Shorter</strong><br />The Model School, Dunmanway, Co Cork</p></td></tr></table>';

var deftext9 = '<table height="255"><tr><td valign="middle"><p style="font-size:14px;">&quot;The exhibition emphasised the value and importance of the children\'s artwork within the school curriculum.&quot;</p><p style="font-size:14px;"><strong>Ciaran Mc Kenna</strong><br />St Felims N.S. Bailieboro, Co. Cavan</p></td></tr></table>';

var deftext10 = '<table height="255"><tr><td valign="middle"><p style="font-size:14px;">&quot;Very well organised from start to finish. The instructions were clear and the guidelines and tips were very helpful.&quot;</p><p style="font-size:14px;"><strong>Olivia McHugh</strong><br />St Brigid\'s N.S. Drumcong</p></td></tr></table>';

var deftext11 = '<table height="255"><tr><td valign="middle"><p style="font-size:14px;">&quot;The children were full of excitement in the lead up to the exhibition & the teachers felt it really motivated them to use their creativity in their artistic endeavours.&quot;</p><p style="font-size:14px;"><strong>Deirdre Sheedy</strong><br />Holy Trinity N.S. Mervue, Galway</p></td></tr></table>';

var deftext12 = '<table height="255"><tr><td valign="middle"><p style="font-size:14px;">&quot;The children really enjoyed doing their pictures, the exhibition gave a welcome boost to art in the school.The success of the day was reflected in sales of 80%.&quot;</p><p style="font-size:14px;"><strong>Fintan Keating</strong><br />Cornafulla N.S. Athlone</p></td></tr></table>';

var deftext13 = '<table height="255"><tr><td valign="middle"><p style="font-size:14px;">&quot;For the children it was very exciting, some of them hardly recognised their pictures when they saw them mounted, framed & displayed.&quot;</p><p style="font-size:14px;"><strong>Maureen Scott</strong><br />Scoil Naomh Fionán, Whitecastle, Co. Donegal</p></td></tr></table>';

var deftext14 = '<table height="255"><tr><td valign="middle"><p style="font-size:14px;">&quot;The quality of service from Images was first class. Other than the children completing their art work, everything was done for us to the very highest quality.&quot;</p><p style="font-size:14px;"><strong>John Robinson, Headteacher</strong><br />Howard Primary School, Croydon, Surrey</p></td></tr></table>';

function getimage(img) {

	if ((img == "next") && (defaultimage <14)) {
		defaultimage ++;
		
	}
	else if((img == "prev") && (defaultimage > 1)) {
		defaultimage --;
	}
	else if((img == "next") && (defaultimage == 14)){
		defaultimage = 1;
	}

		document.getElementById("x").src= "/classified/i000" + defaultimage + ".jpg";
	if(document.getElementById("testim")!=null)
	{	
		if(defaultimage == 1) {
			document.getElementById("testim").innerHTML = deftext;
		}
		else if(defaultimage == 2) {
			document.getElementById("testim").innerHTML = deftext1;
		}
		else if(defaultimage == 3) {
			document.getElementById("testim").innerHTML = deftext2;
		}
		else if(defaultimage == 4) {
			document.getElementById("testim").innerHTML = deftext3;
		}
		else if(defaultimage == 5) {
			document.getElementById("testim").innerHTML = deftext4;
		}
		else if(defaultimage == 6) {
			document.getElementById("testim").innerHTML = deftext5;
		}
		else if(defaultimage == 7) {
			document.getElementById("testim").innerHTML = deftext6;
		}
		else if(defaultimage == 8) {
			document.getElementById("testim").innerHTML = deftext7;
		}
		else if(defaultimage == 9) {
			document.getElementById("testim").innerHTML = deftext8;
		}
		else if(defaultimage == 10) {
			document.getElementById("testim").innerHTML = deftext9;
		}
		else if(defaultimage == 11) {
			document.getElementById("testim").innerHTML = deftext10;
		}
		else if(defaultimage == 12) {
			document.getElementById("testim").innerHTML = deftext11;
		}
		else if(defaultimage == 13) {
			document.getElementById("testim").innerHTML = deftext12;
		}
		else if(defaultimage == 14) {
			document.getElementById("testim").innerHTML = deftext13;
		}
	}
}
function getnextimage()
{
	getimage("next");
}
function getprevimage()
{
	getimage("prev");
}
