$(function(){
	//星标功能
	$(".albumAction .grade .stars").live('mouseover',function(){
		$(this).children(".rating").hide();
	}).live('mouseout',function(){
		$(this).children(".rating").show();
	}).find('a').live('click',function(){
		var score = $(this).attr('_star');
		var rate  = $(this).blur().siblings('.rating');
		rate.css('width',score*16+'px');
		setRating(rate.attr('_albumID'),'album',score);
	});
	
/*	
	//专辑介绍展开收起
	albumIntro = $(".albumIntro .description");
	if(albumIntro.height() > 63)
	{
		readmore = $('<a class="more" href="javascript:void(0);"/>').text('+ 更多内容...');
		albumIntro.css('height','60px').css('overflow','hidden').after(readmore);
		
		readmore.click(function(){
			if(albumIntro.css('overflow') == 'hidden')
			{
				readmore.text('- 收起内容...');
				albumIntro.css('height','auto').css('overflow','auto');
			}
			else
			{
				readmore.text('+ 更多内容...');
				albumIntro.css('height','60px').css('overflow','hidden');
			}
			$(this).blur();
		});
		
	}
*/
});
