
function showHideMenu(menu,sh) {
	document.getElementById(menu).style.visibility = sh;
}

var imr= new Array;
imr[0] = 'images/ct_img_array/children_together_1.jpg';
imr[1] = 'images/ct_img_array/children_together_2.jpg';
imr[2] = 'images/ct_img_array/children_together_3.jpg';
imr[3] = 'images/ct_img_array/children_together_4.jpg';
imr[4] = 'images/ct_img_array/children_together_5.jpg';
imr[5] = 'images/ct_img_array/children_together_6.jpg';
imr[6] = 'images/ct_img_array/children_together_7.jpg';
imr[7] = 'images/ct_img_array/children_together_8.jpg';
imr[8] = 'images/ct_img_array/children_together_9.jpg';
imr[9] = 'images/ct_img_array/children_together_10.jpg';
imr[10] = 'images/ct_img_array/children_together_11.jpg';
imr[11] = 'images/ct_img_array/children_together_12.jpg';
imr[12] = 'images/ct_img_array/children_together_13.jpg';
imr[13] = 'images/ct_img_array/children_together_14.jpg';

function imageShift() {
	rn1= parseInt(Math.random()*imr.length);
	document.getElementById('leftImg').src= imr[rn1];
	
	rn2= parseInt(Math.random()*imr.length);
	while (rn2 == rn1) {rn2= parseInt(Math.random()*imr.length);}
	document.getElementById('rightImg').src= imr[rn2];
	
}