﻿function $E(id) {
	return document.getElementById(id);
}

$(document).ready(function() {
	// 下拉菜单
	$("#nav .inner-right>ul>li").mouseover(function() {
		$(this).addClass("hover");
		$('>a', this).addClass("hover");
	}).mouseout(function() {
		$(this).removeClass("hover");
		$('>a', this).removeClass("hover");
	});
	// 统计链接点击
	$('a[statistic]').mousedown(function() {
		$.get('/cmd/linkCount/', {"id": $(this).attr('statistic')});
		return true;
	});
	// 提交留言
	if ($E('commentForm')) {
		$('#comment-submit').click(function() {
			var form = $E('commentForm');
			if (!form['poster'].value) return alert('您还没有填写姓名');
			if (!form['telephone'].value) return alert('您还没有填写联系电话');
			$(form).submit();
			return false;
		});
	}
});