﻿// JScript 文件

function resize(){
    $("#article_content_main img").each(function(){
        picResizeV2(this,460,800);
    });
}
$(document).ready(resize);
$(window).load(resize);

jQuery(function($){
    $(document).pngFix();
});

jQuery(function($){
    $.formValidator.initConfig({formid:"talkform",alertmessage:false,onerror:function(msg){alert(msg)}});
    $("#content").formValidator({onshow:"请填写您的意见或建议(必填)",onfocus:"您的意见或建议，2个字符以上",oncorrect:"填写正确"}).inputValidator({min:2,onerror:"您的留言至少需要2个字符"});
});

$(document).ready(function(){
	//$.SyntaxHighlighter('./SyntaxHighlighter/');
	var option={
		dir:'/js/SyntaxHighlighter/',
		name:'code',
		showControls:true
	};
	$.SyntaxHighlighter(option);
});