//==============================================================================
//RSS Feed add 2011.02.10
//==============================================================================
google.load("feeds", "1");
function initialize() {
  var feed = new google.feeds.Feed("http://blog.sekiahills.co.jp/?feed=rss2");
  feed.setNumEntries(5)
  feed.load(function(result) {
    if (!result.error) {
      var container = document.getElementById("feed");
      for (var i = 0; i < result.feed.entries.length; i++) {
        var entry = result.feed.entries[i];
        var div = document.createElement("li");
        var a = document.createElement("a");
        a.href = entry.link;
		a.target = "_blank";
        var list = entry.title + "(" + entry.publishedDate.substring(5, 11) + ")" ;
        a.appendChild(document.createTextNode(list));
        div.appendChild(a);
        container.appendChild(div);
      }
    }
  });
}
google.setOnLoadCallback(initialize);


//==============================================================================
//PageTop
//==============================================================================

if (self.location.href != window.location.href) {
	window.location.href = self.location.href;
}


function scrollToPageTop () {
	if (window.scrollTo) {
		//window.scrollTo (0, 0);
		jumpToPageTop();
		return false;
	} else {
		return true;
	}
}

