var Site = new Class({

	initialize: function() {
		this.content = $('content');
		this.pulse(this.content);
	},
	
	pulse: function(el) {
		var pulse = new Fx.Style(el, 'background-color', {
			duration: 2000,
			wait: false,
			onComplete: function() {
				pulse.start(this.from.rgbToHex());
			}
		});
		pulse.start('#333333');
	}
});

window.addEvent('load', function() { 
	/*new Site();*/
	new SmoothScroll();
});
