function insertToTop() {
	$$('.section').each(function(item) {
		if (item.getParent().hasClass('article')) {
			item.grab( new Element('div', {
				'class': 'toTop',
				'html': '<a href="#contents">TOPへ</a>'
			})
			);
		}
	});
}

function insertGoogleSearch() {
	$('global-header').grab( new Element('div', {
		'id': 'google',
		'html': '<a href="http://www.google.co.jp/"><img src="http://www.google.com/logos/Logo_40wht.gif" alt="Google"></a><form method="get" action="http://www.google.co.jp/search"><div id="google-inner"><input type="text" name="q" maxlength="255" value="" id="textbox"><input type="hidden" name="ie" value="utf-8"><input type="hidden" name="oe" value="utf-8"><input type="hidden" name="hl" value="ja"><input type="hidden" name="domains" value="tinyogre.com"><div><input type="radio" name="sitesearch" value="tinyogre.com" checked> tinyogre.com を検索</div><div><input type="radio" name="sitesearch" value=""> WWW を検索</div><input type="submit" name="btnG" value="Google 検索" id="submit"></div></form>'
		})
	);
}

window.addEvent('domready', function() {
	insertToTop();
	insertGoogleSearch();
	new Fx.SmoothScroll();
	new QuickBox();
});

