$(window).load(function(){
	$('.article-content').find('img').each(function(){
		var img = this;
		if (img.width > 480) {
			img.style.width = '480px';
			$(img).removeAttr('height');
			var aTag = document.createElement('a');
			aTag.href = img.src;
			aTag.target = '_blank';
			$(aTag).insertAfter(img).append(img);
		}
	});
});
$(document).ready(function(){
	$('#comment-form').submit(function(){
		var content = jQuery.trim($('#comment-form textarea').val());
		if (!content)
		{
			alert('请输入评论内容');
			return false;
		} else if (content.length <= 5)
		{
			alert('评论字数不能小于5个字');
			return false;
		}
	});
});
