﻿	window.addEvent('domready', function() {
		var Img = $$('div.layout_full div.t_center img');
		if(Img) {
			Array.each(Img, function(el, index){
					el.set('opacity', 0.03);
					el.set('morph', {duration:2000, transition: 'circ:in'});
					el.morph({
						'opacity' : [0.03,1]
					});
				});
			}
			
		//Suppress text resizing behavior of iPhone and iPod CSS{ -webkit-text-size-adjust : none; }
		if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
			$('top').setStyle('-webkit-text-size-adjust','none');
		}
		//			
	});
