window.addEvent('domready', function(){

	if (Browser.ie) $$('a[href$=".pdf"]').addClass('pdf');

	var h = $('head'),
		imgs = h.getElements('img'),
		i = 0,
		nextImg = function(){
			i++;
			if (i >= imgs.length) i = 0;
			imgs[i].setStyle('opacity', 0).inject(h, 'bottom').tween('opacity', 1);
		};
	
	if (imgs.length > 1){
		imgs[i].inject(h, 'bottom');
		nextImg.periodical(2500);
	}

});

