/*!
 * Homepage JS
 * http://seroczynski.net/
 *
 * Copyright (c) 2009 Marcin Seroczynski
 */

var JS = {
	initialize: function() {
		this.avatars();
	},

	avatars: function() {
		$('.avatar').innerfade({
			speed: 'slow',
			timeout: 3000,
			type: 'sequence',
			containerheight: '300px'
		});
	}
}

jQuery(function() {
	JS.initialize();
});

