﻿window.addEvent('domready', function(){
	new Element('div', {
		'class': 'Guestbook',
		html: '<form method="post" action=""><fieldset><label for="name">Namn:</label><input id="name" name="name" type="text" /><br /><label for="email">Epost:</label><input id="email" name="email" type="text" /><br /><label for="content"></label><textarea id="content" name="content" rows="8"></textarea><br /><label for="submit"></label><input id="submit" name="submit" type="submit" value="Skicka" /></fieldset></form>'
	}).replaces($('GuestbookForm'));
});
