/*
'=====================================================================
' Module Name:
' File name: blog.js
' Author: william.lu
' Project : my_bebo
' Copyright (c) all rights reserved by juuyou.com Co., LTD.
' Create on 2009/02/03
' Version: 1.0
'
'=====================================================================
'*********************************************************************
' Usage: Blog页JS函数集
'
'*********************************************************************
*/

/**  定义juuyou.blog命名空间  **/
juuyou.blog = {};

//初始化喜欢动作
$(document).ready(function(){
	$(".l_like").live("click", function(){
		$.ajax({
	 		type:"POST",
			url:"../json/photo/photoActiveLike.php",
			async:true,
			data: {
				aid: strActiveId,
				act: "like"
			},
			success:function(data){
				if($.trim(data) == juuyou.common.json.failure){
				}else{
					$(".j_like_span").hide();
					$(".j_likes").replaceWith(data);
				}
			}
		});
		return false;
	});
});
/**  验证并提交  **/
juuyou.blog.checkBlogCommentSubmit = function(){
	return juuyou.common.validWordLength('txtAreaComment', 'txt_word_cnt', 300);
}


