// Design by OTiger.cn
jQuery(function($) {
	//添加导航条当前菜单样式
	var currenturl = document.location.href;
	$(".nav a").each(function(i){
	if($(this).attr('href')==currenturl){												
				$(this).addClass("selected");
			}else{
				$(this).removeClass("selected");
			}
		});
//加入收藏夹
	$("#addFavorite").click(function() { 
		var ctrl = (navigator.userAgent.toLowerCase()).indexOf('mac') != -1 ? 'Command/Cmd' : 'CTRL'; 
		if (document.all){ 
			window.external.addFavorite('http://www.gpcsoft.com','政采软件'); 
		}else if (window.sidebar){ 
			window.sidebar.addPanel('政采软件', 'http://www.gpcsoft.com'); 
		}else { 
			alert('您可以尝试通过快捷键' + ctrl + ' + D 加入到收藏夹!'); 
		} 
	});
	//设为首页
	$("#setHomePage").click(function() {
		var strHref=window.location.href;
		this.style.behavior='url(#default#homepage)';
		this.setHomePage('http://www.gpcsoft.com');
	});  
});
