/*
* @title はてブでアーーーーッ!!!
* @description アーーーーッ!!!
* @include http://*
* @license BSD
* @require jQuery
* @require http://miya2000.up.seesaa.net/marquee/marquee.js
*/
(function() {
$.getJSON('http://b.hatena.ne.jp/entry/json/?url=' + encodeURIComponent(location.href.replace(/#/, '%23')) + '&callback=?', function(data) {
$.each(data.bookmarks, function(index, item) {
if (item.comment) {
new Marquee($('<p/>').attr('id','HatebuAhhhhh'+index).css({'position': 'absolute !important', 'top': index * 60 + 'px !important', 'z-index': 999, 'font-size': '30px !important', 'font-weight': 'bold !important'}).append($('<img/>').attr('src','http://www.hatena.ne.jp/users/' + item.user.substr(0, 2) + '/' + item.user + '/profile.gif').css('width', '30px !important')).append($('<span/>').text(item.comment)).appendTo(document.body)[0].id, {amount:Math.floor(Math.random()*5)+10, delay:60});
}
});
});
})()