
window.addEvent('domready', function() {

	$$('.box:nth-child(1)').each(function(box){
		box.addClass('one');
	});
	$$('.box:nth-child(2)').each(function(box){
		box.addClass('two');
	});
	$$('.box:nth-child(3)').each(function(box){
		box.addClass('three');
	});
	$$('.box:nth-child(4)').each(function(box){
		box.addClass('four');
	});
	
	new Background();
	
	$$('form.form').each(function(form){
		new ContactForm(form);
	});
	
});

