/* 鼠标特效 */
var woedIndex = 0;
jQuery(document).ready(function($) {
$("body").click(function(e) {
var wordArr = new Array("富强","民主","文明","和谐","自由","平等","公正","法治","爱国","敬业","诚信","友善");
var wordBox = $("<span></span>").text(wordArr[woedIndex]);
woedIndex = (woedIndex + 1) % wordArr.length;
var x = e.pageX,
y = e.pageY;
wordBox.css({
"z-index": 999999,
"top": y - 20,
"left": x,
"position": "absolute",
"font-weight": "bold",
"color": "rgb("+~~(255*Math.random())+","+~~(255*Math.random())+","+~~(255*Math.random())+")"
});
$("body").append(wordBox);
wordBox.animate({
"top": y - 180,
"opacity": 0
},1500,function() {
wordBox.remove();
});
});
});