// ==UserScript==
// @name           GIGAZINE Full Text
// @namespace      http://c--v.net/
// @include        http://gigazine.net/*
// ==/UserScript==
// Mail: ryosuke a sekido dot info
// Home: http://c--v.net/
// License: Creative Commons by 2.1 Japan
//

(function() {
	var list = document.getElementsByTagName('a');
	try {
		for (i = 0; i < list.length; i++) {
			list[i].href = list[i].href.replace('http://gigazine.net/index.php?/news/20', 'http://gigazine.net/index.php?/news/comments/20');
		}
	} catch (e) {
	}
})();
