//link
var isMSIE = /*@cc_on!@*/false; 
if (isMSIE) { 
} else {
	$(function(){$('a').hover(
		function(){$(this).animate({opacity:.75},{duration:0})},
		function(){$(this).animate({opacity:1},{duration:400})});
	});
}

//twitter
$(function(){
var tweeturl="http://twitter.com/status/user_timeline/rose_records.json?count=4&callback=?";
$.getJSON(tweeturl, function(data){
$.each(data, function(i, item){
var txt = item.text
.replace(/(https?:\/\/[-a-z0-9._~:\/?#@!$&\'()*+,;=%]+)/ig,'<a href="$1">$1</a>')
.replace(/@+([_A-Za-z0-9-]+)/ig, '<a href="http://twitter.com/$1">@$1</a>')
.replace(/#+([_A-Za-z0-9-]+)/ig, '<a href="http://search.twitter.com/search?q=$1">#$1</a>');
$("<p></p>")
.addClass(i%2 ? "even" : "odd")
.html(txt)
.prependTo("#twitter");
});
});
});

//トップのライブを指定の数
$(function(){$('.indexlive article:nth-child(13)').nextAll().not(".more").remove()});

