/**
 * timelag
 * 
 * Copyright (c) 2009 Kyosuke Nakamura (kyosuke.jp)
 * Licensed under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 */

$(function(){
    $('.js_timelag').each(function(i){
		var item = $(this);
		item.css('opacity', 0);
		setTimeout(function(){
			item.animate({
				opacity: 1
			}, 800, 'linear', function(){
				if (!$.support.opacity) {
					if (this.style.filter && this.style.removeAttribute) {
						this.style.removeAttribute('filter');
					}
				}
			});
		}, i * 200);
    });
});

