/*
	var fisheyes=["img.fe-chat","img.fe-contact"];
	for (anImage in fisheyes) {
		if ((anImage) <= fisheyes.size()) {
			el=$(fisheyes[anImage]);
			el.setStyle({width:"147px",height:"36px"});
			Event.observe(el,'mouseover',
				function(evt){ 
					Event.element(evt).morph({width: "150px",height: "39px"},{duration:.3})
				}
			);
			Event.observe(el,'mouseout',
				function(evt){ 
					Event.element(evt).morph({width: '147px',height: '36px'},{duration:.2});
				}
			);
		}
	}
	
/*
	new Effect.Appear($('topBack'), {from: 0.25, to: 10.0, duration: 6.5});
	var scrollContainer=$('scrollTop')

	new Effect.Appear(scrollContainer, {from: 0.01, to: 1.0, duration: 4.2});

	var scrollingItems = scrollContainer.getElementsByTagName('img');
	
	scroller = new AC.Scrollinator(scrollContainer, AC.Scrollinator.Strategies.Right, scrollingItems);
*/
