﻿window.addEvent('domready',function() {
  // PNG fix
  $$('img[src$=.png]').setStyle('behavior','url(/_include/pngFix.htc)');

  // rel external fix
  $$('a').each(function(a) {
    if(a.getProperty('rel') == 'external') a.target = '_blank';
  });

  // Slideshow
  var mySlideShow = new mooSimpleSlide([$('photo1'),$('photo2'),$('photo3'),$('photo4'),$('photo5')],{period:5000});
  mySlideShow.displayImage();
});
