	
	var Timer = 8000 //elapse time for picture change eight seconds;
	var num = -1;
		
		caption1 ="Lieutenant Noel Lewis of the Jamaica Defence Force Air Wing explains the duties of one of the training aircraft to Major General Alain Parent, Commander 1 Canadian Air Division, during his recent visit to the Jamaica Military Aviation School (JMAS) on Wednesday 14 September 2011. Photo by: Private Horace Brown";	
  	
		caption2 = "Major General Alain Parent, Commander 1 Canadian Air Division, inspects the Quarter Guard at the Jamaica Military Aviation School (JMAS) during his recent visit on Wednesday 14 September 2011.  Photo by: Private Horace Brown";		
		//caption3 = "In a show of continued mutual support and assistance, members of the Jamaica Defence Force Air Wing and Canadian Forces aviation personnel launched Operation JAGUAR at the Jamaica Defence Force Air Wing, Up Park Camp on 23 August 2011. Photo by: Private Horace Brown";
		
	var picAndCap = new Array();
	picAndCap[0] =  '<img  src="images/picOfweekSpec/Genparent.jpg" title="'+ caption1 +'" />';
	
	picAndCap[1] = '<img src="images/picOfweekSpec/Genparent2.jpg" title="'+ caption2 +'"/>';
	
	//picAndCap[2] = '<img src="images/picOfweekSpec/canada_jdfaw.jpg" title="'+ caption3 +'"/>';
	
	function change()
		{
			//alert("adsfadsf");
		num += 1;		       //style.backgroundImage = "url("+pictures[num]+")";	caption[num]	
			
		document.getElementById('picOfWeek').innerHTML=picAndCap[num];
		
		
		if(num == 1)
			{
			num = -1;			
			}	
			
		setTimeout("change()", Timer);		
		}
  
	
