/*****************************************************
 * Andreea Sanduloiu Photography
 * Copyright (c) 2007 Andreea Diana Sanduloiu
 *
 * @author: Constantin Bejenaru (www.frozenminds.com)
 * @version: 0.2
 * @last_edit: 29 Oct 2007
 *****************************************************/

window.addEvent('domready', function()
{
   //accordion effect
   var accordion = new Accordion('h3.atStart', 'div.atStart', {
         //options
         show: 'none',
         alwaysHide: true,
         start: 'all-closed',
         duration: 1500,
         opacity: false,
         //toggle action on-events
         onActive: function(toggler, element)
                   {
                     toggler.setStyle('color', '#888');
                   },
         onBackground: function(toggler, element)
                       {
                          toggler.setStyle('color', '#888');
                       }
      }, $('accordion'));
   accordion.display(1);

   /*
   //add class to images in preview box
   var list = $$('.giThumbnail');
   list.each(function(element)
   {
      $(element).addClass('preview_item');
   }
   */

   //items preview using opacity
   var list = $$('.preview_item');
   list.each(function(element)
   {
      new Fx.Style(element, 'opacity', {duration:1}).start(1,0.3);

      element.addEvent('mouseenter', function(){
         new Fx.Style(element, 'opacity', {duration:400}).start(0.3,1);
      });

      element.addEvent('mouseleave', function(){
         new Fx.Style(element, 'opacity', {duration:400}).start(1,0.3);
      });
   });

});