document.write(showTizers());

function onAfter()
{
  /*
  var idinfo = '#' + this.parentNode.id + '-info';
  $(idinfo).html(this.title);
  */
}

$(document).ready(function() {
  
  $('.slideshow').cycle({
    fx:       imgeffects, 
    speed:    effectspeed, 
    timeout:  effecttimeout,
    after:    onAfter
  });
  
  $('.slideshow').find('a.ct2_a1').each(function() {
    //$(this).css('display','');
    $(this).show();
  });
  
  $('.slideshow').find('img.ct2_img1').each(function() {
    //$(this).css('display','');
    $(this).show();
  });
  
});

