is<\/b> a "kangaroo" court'; cap[49] = 'Court Number 1 is where the justices hear the major cases'; cap[50] = 'Steel pair sculpture outside National Gallery'; cap[51] = 'Rodin sculpture has been sitting still a bit long'; cap[52] = 'Reflections in large mirrored cones, National Art Gallery sculpture garden'; cap[53] = '"Beached Again" sculpture by Robert Stackhouse'; cap[54] = 'Water fountains on grass mall outside of Finance Building'; cap[55] = 'Statue tribute to George V'; cap[56] = 'Old Parliament House was the home of all government offices until 1988'; cap[57] = 'Grand Entrance to this classic building'; cap[58] = 'Kings Hall is the main lobby'; cap[59] = 'Sounds like a powerful place to work'; cap[60] = 'Senate Chambers in the Old Parliament House'; cap[61] = 'Aboriginal Tent Embassy- protests outside of Old Parliament House'; cap[62] = 'Aboriginal protestor area against backdrop of War Memorial'; cap[63] = 'Aboriginal art decorations on the pavement'; cap[64] = 'lt looks like they plan to be here for a while'; cap[65] = 'The New Parliament House is built into a grass covered hill'; cap[66] = 'The Veranda, entrance to Parliament House'; cap[67] = 'From top of Parliament House to old version and Mount Ainslie'; cap[68] = 'Tower at top of New Parliament House'; cap[69] = 'Unique flag pole up here'; cap[70] = 'Glass Atrium at top of New Parliament House'; cap[71] = 'Glass pyramid reflects the flag pole'; cap[72] = 'View of mosaic at entrance'; cap[73] = 'Closer view of the mosaic at entrance to Parliament House'; cap[74] = 'Mosaic pieces are granite'; cap[75] = 'Close view of granite mosaic pieces'; cap[76] = 'Grand Lobby of Parliament House'; cap[77] = 'Grand Tapestry decorates Great Hall, used for ceremonies'; cap[78] = 'Senate chambers'; cap[79] = 'House of Representatives chambers'; cap[80] = 'Australian version of Library of Congress'; cap[81] = 'Grape vines indicate one thing...'; cap[82] = '... that this is a visit to a Canberra\'s Clonakilla winery'; cap[83] = 'John eagerly awaits a taste of the Riesling'; cap[84] = 'Michael explains the recipe'; cap[85] = 'The grape press machine'; cap[86] = 'Barrels of red cabernet are in the waiting stage'; cap[87] = 'Rows of barrels hard at work making fine wine'; cap[88] = 'The Shariz has been an award winning wine two years running'; cap[89] = 'Boxes of the final product ready for a journey to Sydney restaurants'; cap[90] = 'Two of the Clonakilla white wines; the Riesling went home with me'; cap[91] = 'House of the Moores, my Canberra home for weeks'; cap[92] = 'Entrance to park near the house'; cap[93] = 'Graceful trees on the ridge line'; cap[94] = 'Walking path through purple splendor'; cap[95] = 'Survey marker at the top of the ridge'; cap[96] = 'The moon is nestled in the arms of a eucalyptus tree'; cap[97] = 'Crimson Rosella, a red parrot singing in the trees'; cap[98] = 'Pimply texture of tree bark'; cap[99] = 'These tress must have the same polarity'; cap[100] = 'Odd tower at the top of Mt Wanniassa'; cap[101] = 'A grey kangaroo greets visitors to the top of Mt Wanniassa'; cap[102] = 'And the welcoming committee decides to run away from the visitor'; cap[103] = 'Panoramic collage of the area south of the park, including Fadden and Tuggeranong'; cap[104] = 'Allan holds "Joey" a pet "budgie"'; cap[105] = 'The other bird, "Stumpy" has only one leg'; cap[106] = 'A walk in the bush near Black Mountain'; cap[107] = 'Scribbly bark texture caused by grubs'; cap[108] = 'Another crimson rosella'; cap[109] = 'Two crimson rosellas chat it up'; // ------------- end of captions -----------------------// //-------------------------------------------------------- // (4) SET THE AUTOSHOW DELAY TIME // This is the amount of time between changing of slides // when we are in automatic mode. Values are in // milliseconds, multiple the number of seconds desired // by 1000. If you are unsure, try a value of 8000. var delay_time = 12000; //-------------------------------------------------------- // (5) SET THE BACKGROUND MODE // This variable indicates whether to use a light background // for the slide screen (light_mode = true;) or a dark // background (light_mode = false;) var light_mode = true; //-------------------------------------------------------- // (6) SET THE CAPTION LOCATION // This variable controls the placement of the caption // relative to the picture. Valid values are // 1 above the picture // 2 left of the picture // 3 right of the picture // 4 below the picture var cap_align = 3; //-------------------------------------------------------- // END OF CONFIGURATION AREA // The rest of the code should not be edited! //-------------------------------------------------------- //-------------------------------------------------------- // SET READY FLAG // Called when both images have been loaded on main display // and sets the graphic to indicate state (loaded=1) function ready_state (s_flag) { if (s_flag == 0) { imgLoaded = 0; } else { imgLoaded+=s_flag; } if (document.images) { if (imgLoaded > 1) { document.images.lstat.src = ready_y.src; } else { document.images.lstat.src = ready_n.src; } } } //-------------------------------------------------------- // SLIDE ADVANCER // Called from a click on one of the slide buttons // wDirection is either 1 or -1 function slideClick (wDirection) { slide_count = slide_count + wDirection; if (slide_count < 0 ) { slide_count = 0; } else { playSlide(); } } //-------------------------------------------------------- // SLIDE MENU JUMPER // Go to arbitrary slide from menu selection function goSlide () { // Update the slide counter based upon the menu item selected slide_count = document.control.gomenu.selectedIndex; if (slide_count == 0) { // First menu item resets the show setUp() } else { // Play the selected slide playSlide(); } } //-------------------------------------------------------- // SLIDE PLAYER // Called from several functions to set up the requested // slide. Finds the appropriate image file, caption file function playSlide () { // Check if we tried to go before the first slide if (slide_count == 0) { slide_count = 1; alert ('This is the very first slide!'); } else { // Check if we went past the last slide if (slide_count == slides.length) { slide_count = slides.length - 1; alert ('This is the very last slide!'); } else { // Set state of "loading..." ready_state(0); // Set left button image if (slide_count == 1) { if (document.images) { document.images.leftb.src = leftb_off.src; } } else { if (document.images) { document.images.leftb.src = leftb_on.src; } } // Set right button image if (slide_count == slides.length - 1) { if (document.images) { document.images.rightb.src = rightb_off.src; } } else { if (document.images) { document.images.rightb.src = rightb_on.src; } } // Re-write screen new content parent.frames[0].document.clear(); // Use appropriate background colors if (light_mode) { parent.frames[0].document.write(''); } else { parent.frames[0].document.write(''); } // store the caption in a var my_cap = '' + cap[slide_count] + ''; parent.frames[0].document.write('
'); if (cap_align == 1) { parent.frames[0].document.write( ''); } else if (cap_align == 2) { parent.frames[0].document.write( ''); } // insert the current image here parent.frames[0].document.write(''); } if (cap_align == 4) { parent.frames[0].document.write( ''); } else { parent.frames[0].document.write( ''); } parent.frames[0].document.write( '
' + my_cap + '
' + my_cap + ''); if (cap_align == 3) { parent.frames[0].document.write( '' + my_cap + '
' + my_cap + '
'); // pre-load the next image, if there is one, by inserting it as a 1x1 image if (slide_count != slides.length - 1) { parent.frames[0].document.write(''); } else { parent.frames[1].ready_state(1); } parent.frames[0].document.write('

'); parent.frames[0].document.close(); // update the clicker menu document.control.gomenu.options[slide_count].selected = true; } } } //-------------------------------------------------------- // AUTOMATIC SLIDE SHOW // Turns on or off the automatic advance of slides by // activation of the checkbox on the jClicker function autoShow() { if (document.control.auto.checked) { changeImage(); } else { timerID = clearTimeout(timerID); } } //-------------------------------------------------------- // AUTOMATIC SLIDE SHOW // Controls autoadvance of slides by using Javascript timer // functions function changeImage() { if (imgLoaded > 1) { // all images are loaded // increment the counter, check for loop at last slide slide_count++; if (slide_count == slides.length) { slide_count = 1; } playSlide(); timerID=setTimeout('changeImage()',delay_time); } else { // images still loading, reset timer timerID=setTimeout('changeImage()',1500); } } //-------------------------------------------------------- // SETUP // initializes variables for loading and reloading function setUp() { imgLoaded = 0; // set the left button to the "off" graphic if (document.images) { document.images.leftb.src = leftb_off.src; } // reset the slide counter & menu selection slide_count = 0; document.control.gomenu.options[0].selected = true; // rebuild the title page parent.frames[0].document.clear(); // use appropriate background colors if (light_mode) { parent.frames[0].document.write(''); parent.frames[0].document.write('
slide tray

'); } else { parent.frames[0].document.write(''); parent.frames[0].document.write('

slide tray

'); } parent.frames[0].document.write('' + showTitle + '

'); parent.frames[0].document.write(''); parent.frames[0].document.write(showCredits); parent.frames[0].document.write('
' + (slides.length - 1) + ' images to see!'); parent.frames[0].document.write('

'); parent.frames[0].document.close(); } // End Hiding -->