/**************************************************************************************************** * GALLERY.JS - the clientside logic of the gallery ****************************************************************************************************/ // ---------------------------------------------------------------- // change big picture when clicking on thumbnail // ---------------------------------------------------------------- var flashPicture = ""; window.addEvent('domready', function() { $$('#pics_scroll li').each( function(item, index) { $(item).addEvent('click', function() { $('bigPicture').setProperty('src', '/bilder/bilder2/' + $(this).getAttr('src')); flashPicture = 'http://www.meinheizkoerper.at/bilder/bilder3/' + $(this).getAttr('src'); $('info_text').set('html', $(this).getAttr('text')); $('text_detail').setStyle('width', '200px'); //alert('Flash picture:'+flashPicture); ChangeFlashImage(flashPicture); }); }); });