// JavaScript Document
/*
 这里封装了Jquery插件运行及一些常用函数
 1,自动重置
 2,给元素添加动画
 */
 

//初始化时默认
$(document).ready(function(){	
	//为当前链接添加 .here 样式
	$("a").filter(function(index) {
	  return $(this).attr("href") == document.URL;
	}).addClass('here');

 });

