var urlpath = location.href;
if (top != window) {
	try {
		top.window.location.href = urlpath;
	} catch (e) {
		alert("不允许非法的网外嵌套，请到 http://www.dgpost.com.cn/ 查看该页面");
		window.location.href = "about:blank";
	}
}
$(function() {
	//
	$("a").hover(function() {
				$(this).css("textDecoration", "underline");
				$(this).css("color", "green");
			}, function() {
				$(this).css("textDecoration", "none");
				$(this).css("color", "");
			});
	//
	$("#guiderButton  a").hover(function() {
				$(this).css("textDecoration", "underline");
				$(this).css("color", "yellow");
			}, function() {
				$(this).css("textDecoration", "none");
				$(this).css("color", "white");
			});
	//
});