$(function() {
	$("a[class*='open_new']").each(function() {
		$(this).attr('target', '_blank');
	});


	// 新闻页面的链接target
	$("div.news_block div.main a").each(function() {
		if ($(this).attr('href').substr(0, 24) != 'http://www.china-ncw.com') $(this).attr('target', '_blank');
	});
	// 案例页面的链接target
	$("div.case_detail div.main a").each(function() {
		if ($(this).attr('href').substr(0, 24) != 'http://www.china-ncw.com') $(this).attr('target', '_blank');
	});



	$("a[class*='qq1']").click(function() {
		$(this).attr('abs', 'aaa');
		var tempSrc='http://sighttp.qq.com/wpa.js?rantime='+Math.random()+'&sigkey=7e0be5887d4a16ba9a2b2f9fe22210f57de2d51ce073b0b02bb91100fc7cba3b';
		var oldscript=document.getElementById('testJs');
		var newscript=document.createElement('script');
		newscript.setAttribute('type','text/javascript');
		newscript.setAttribute('id', 'testJs');
		newscript.setAttribute('src',tempSrc);
		if(oldscript == null) {
			document.body.appendChild(newscript);
		}else{
			oldscript.parentNode.replaceChild(newscript, oldscript);
		}
		return false;
	});
	$("a[class*='qq2']").click(function() {
		var tempSrc='http://sighttp.qq.com/wpa.js?rantime='+Math.random()+'&sigkey=18ee2df7938b2e7a63d94b3a1d60906fcc6adf069a16b64e57ba37f5740f93b7';
		var oldscript=document.getElementById('testJs');
		var newscript=document.createElement('script');
		newscript.setAttribute('type','text/javascript');
		newscript.setAttribute('id', 'testJs');
		newscript.setAttribute('src',tempSrc);
		if(oldscript == null) {
			document.body.appendChild(newscript);
		}else{
			oldscript.parentNode.replaceChild(newscript, oldscript);
		}
		return false;
	});
});