﻿/**
 * 导航当前项高亮
 */
function menuHighLight(menu){
	var locationHref = window.location.href;
	var $menus = $(menu).find('a');
	$menus.not(':first').each(function(){
		if(locationHref.indexOf(this.href) != -1){
			$(this).addClass('on');
		}
	});
}

jQuery(function($){
	menuHighLight("#menu");
});

//屏蔽右键
function stop(){
	return false;
}
document.oncontextmenu = stop;
document.onselectstart = stop;
document.onsdragstart = stop;