Event.observe(window, 'load', function() {
	
	$$('#social_icons img').each(function(img) {
	
		Element.observe(img, 'mouseenter', function() {
			img.setStyle("z-index: 3");
			new Effect.Morph(img, {
				style: 'width:125px;height:125px;',
				duration: 0.2,
				queue: { position: 'end', scope: 'imgscope1', limit: 3 }
			});
		});
		
		Element.observe(img, 'mouseleave', function() {
			img.setStyle("z-index: 1");
			new Effect.Morph(img, {
				style: 'margin-left:0px;width:75px;height:75px;',
				duration: 0.2,
				queue: { position: 'end', scope: 'imgscope1', limit: 3 }
			});
		});
		
	});
});
