/* 没 */
/* 语言选择 */
function getPosition(el) {
	el = (typeof(el) == "object") ? el : $.C.obj(el);
	var x = 0, y = 0;
	while(el) {
		x += el.offsetLeft || 0;
		y += el.offsetTop || 0;
		el = el.offsetParent;
	}
	return {x:x, y:y};
}

var timerLangs = null;

function showLangs() {
	clearLangsTimer();
	var p = getPosition("imgLangs");
	$("#imgLangs").css("opacity", 0.8);
	$("#langs").css({"top" : p.y + 19, "left" : p.x }).show();
}

function clearLangsTimer() {
	if (timerLangs) {
		clearTimeout(timerLangs);
		timerLangs = null;
	}
}

function hideLangs() {
	clearLangsTimer();
	timerLangs = setTimeout(
		function() {
			$("#imgLangs").css("opacity", 1);
			$("#langs").hide();
		},
		200
	);
}

$(document).ready( function() {
	$("#imgLangs").hover(showLangs, hideLangs);
	$("#langs").hover(clearLangsTimer, hideLangs);
	$("#langs a").hover(clearLangsTimer);
});

/* 浏览器窗口改变大小时 */
function CW() {
	var width = Math.max(
		1024,
		Math.min(
			$(window).width() + 20,
			 screen.width
		)
	);
	var cwidth = Math.min(width - 554, 600);
	//$("#MainStyle").attr("href", "/css/" + width + ".aspx");
	
	var c = [
		[".page", "width - 74"],
		[".TOP", "width - 74"],
		[".downcontent", "width - 74"],
		[".box", "width - 74"],
		[".s-center", "width - 550"],
		[".bh-center", "width - 425"],
		[".NewsGreenBlock", "width - 594"],
		[".bh-Title", "width - 320"],
		[".bh-Title2", "width - 320"],
		[".bh-Line", "width - 320"],
		[".bh-more", "width - 430"],
		[".bh-4", "width - 320"],
		[".bh-4-right", "width - 534"],
		[".bh-Menu", "width - 320"],
		[".bh-Arrow", "width - 320"],
		[".bh-Pics", "width - 320"],
		[".bh-Pic-right", "width - 481"],
		[".bh-Pic-right .title", "width - 481"],
		[".bh-Pic-right .rlink", "width - 481"],
		[".gy-Title", "width - 550"],
		[".gy-Line", "width - 550"],
		[".gy-Des", "width - 550"],
		[".gy-Des .img", "width - 550"],
		[".gy-Des .more", "width - 550"],
		[".lj-title", "width - 550"],
		[".lj-Menu", "width - 550"],
		[".lj-Arrow", "width - 550"],
		[".zg-Menu, .lb-Menu", "width - 550"],
		[".zg-Arrow", "width - 550"],
		[".lb-Arrow", "width - 550"],
		[".zg-center", "width - 320"],
		[".zg-Line", "width - 550"],
		[".zg-4", "width - 320"],
		[".zg-pj-list", "width - 550"],
		[".zg-pj-right", "width - 700"],
		[".lb-pj-list", "width - 550"],
		[".lb-pj-right", "width - 700"],
		[".cy-title", "width - 550"],
		[".cy-box", "width - 582"],
		[".cy-box-right", "width - 728"],
		[".cy-line", "width - 550"],
		[".cy-blank", "width - 550"],
		[".cy-titleView", "width - 550"],
		[".cy-boxView", "width - 588"],
		[".cy-boxView2", "width - 550"],
		[".zg-4-left", "(width > 1100) ? 30 : 0", "marginRight"],
		[".column1", "width / 2 - 288"],
		[".column2", "width / 2 - 287"],
		[".cy-box2", "width / 2 - 320"],
		[".cy-box-right2", "width / 2 - 466"],
		[".NewsMList .RightDiv div.CT", "cwidth"],
		[".gy-Des .des", "cwidth"],
		[".lj-content", "cwidth"],
		[".lb-pj-content", "cwidth"],
		[".cy-boxView .content", "cwidth"],
		[".cy-boxView2 .content", "cwidth"],
		[".cwidth", "cwidth"],
		[".zy-center", "width - 320"],
		[".ZhiYuanGreenBlock", "width - 320"],
		[".zy-title", "width - 320"],
		[".zy-box", "width - 352"],
		[".zy-box-right", "width - 498"],
		[".zy-box-alt", "width - 372"],
		[".zy-box-one", "width - 402"]
	];
	
	for (var i = 0, len = c.length; i < len; i++) {
		if (c[i].length == 2) {
			$(c[i][0]).css("width", eval(c[i][1]));
		}
		else {
			$(c[i][0]).css(c[i][2], eval(c[i][1]));
		}
	}
}
