iBet uBet web content aggregator. Adding the entire web to your favor.
iBet uBet web content aggregator. Adding the entire web to your favor.



Link to original content: https://web.archive.org/web/20160417110817/http://www.fawan.com/
            法制晚报网         //主图轮播代码 (function ($) { $.fn.slide = function (options) { var defaults = { slideWidth: 890, autoplay: true, duration: 15000, showSlideIndex: false }; var options = $.extend(defaults, options); return this.each(function () { var slideshow = $(this); var o = options; var currentPosition = 0; var slides = $('.slide'); var numberOfSlides = slides.length; // Remove scrollbar in JS $('#slidesContainer').css('overflow', 'hidden'); // Wrap all .slides with #slideInner div slides.wrapAll('
') // Float left to display horizontally, readjust .slides width .css({ 'float': 'left', 'width': o.slideWidth }); // Insert a clone of first slide $('.slide:first').clone().appendTo('#slideInner'); // Set #slideInner width equal to total width of all slides $('#slideInner').css('width', o.slideWidth * (numberOfSlides + 1)); // Insert controls in the DOM slideshow .prepend('') .append(''); // Insert slides index if (o.showSlideIndex == true) { slideshow.append('
'); for (var i = 1; i <= numberOfSlides; i++) { $('#slideIndex').append('' + i + ''); } $('.numbers').click(function () { goto(($(this).attr('id')).replace('slide-', '') - 1, false) }); } // Create event listeners for .controls clicks $('#leftControl').click(function () { prev() }); $('#rightControl').click(function () { next() }); // Start init(); //Init function function init() { manageControls(currentPosition); if (o.autoplay == true) setNextTimeOut(o.duration); } // Next function next() { currentPosition++; if (currentPosition >= numberOfSlides) currentPosition = 0; slideTo(currentPosition, true); } // Previous function prev() { currentPosition--; if (currentPosition < 0) currentPosition = numberOfSlides - 1; slideTo(currentPosition, false); } // Go to a slide function goto(position) { currentPosition = position; slideTo(currentPosition, false); } // Set time out for next slide function setNextTimeOut(time) { $('#slidesContainer').stop(); // Just a crap animation to get timer, I got problem with setTimeout $('#slidesContainer').animate({ optical: 1 }, time, '', function () { next(); }); } // Slide function slideTo(position, continuously) { $('#slideInner').stop(); // usual cases if (continuously == false || o.autoplay == false || position != 0) { $('#slideInner').animate({ 'marginLeft': o.slideWidth * (-position) }, '', '', function () { manageControls(position); if (o.autoplay == true) setNextTimeOut(o.duration); } ) } // autoplay: slide from last to first one continuously else { // slide to the 'fake' first slide (actually at the last) $('#slideInner').animate({ 'marginLeft': o.slideWidth * (-numberOfSlides) }, '', '', function () { //immediately change to the 'true' first slide $('#slideInner').css('marginLeft', 0); manageControls(position) if (o.autoplay == true) setNextTimeOut(o.duration); } ) } } // manageControls: Hides and Shows controls depending on currentPosition function manageControls(position) { // Hide left arrow if position is first slide if (position == 0) { $('#leftControl').show() } else { $('#leftControl').show() }; // Hide right arrow if position is last slide if (position == (numberOfSlides - 1)) { $('#rightControl').show() } else { $('#rightControl').show() }; // Hilight the current page if (o.showSlideIndex == true) { // remove active class from all pages $('.numbers').removeClass("active"); // add only to the current page $('#slide-' + (position + 1)).addClass("active"); } } }); }; })(jQuery); /*通用变量*/ var imgnumber = 1;//判断第几张图片 var changedivname = 1;//判断是第几个显示块    var _hmt = _hmt || []; (function () { var hm = document.createElement("script"); hm.src = "//web.archive.org/web/20160418173511/http://hm.baidu.com/hm.js?c3cf034dcbd403326997fb7d4dcfa096"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })();    var Dialogflag; //var Dialogheight = window.document.documentElement.clientHeight - 277; //if (Dialogheight < 590) { // Dialogheight = 590; //} var Dialogheight = 1805; function NeatDialog(sHTML, sTitle, bCancel) { window.neatDialog = null; this.elt = null; if (document.createElement && document.getElementById) { var dg = document.createElement("div"); dg.id = "dgid"; dg.style.cssText = "Z-INDEX: 99; MARGIN: auto; WIDTH: 1060px; POSITION: relative; top: 0px; height:" + Dialogheight + "px;"; //dg.style.cssText = "Z-INDEX: 99; MARGIN: auto; WIDTH: 1058px; POSITION: relative; top: 266px; height:" + Dialogheight + "px;"; dg.innerHTML = sHTML; var dbg = document.createElement("div"); dbg.id = "nd-bdg"; dbg.style.cssText = "Z-INDEX: -1; FILTER: alpha(opacity=50); LEFT: 0px; WIDTH: 100%; POSITION: absolute;TOP: 0px; BACKGROUND-COLOR: #535353; opacity: 0.5; height:2000px;"; var dgc = document.createElement("div"); dgc.className = "neat-dialog-cont"; dgc.appendChild(dbg); dgc.appendChild(dg); if (document.body.offsetLeft > 0) { dgc.style.marginLeft = document.body.offsetLeft + "px"; } document.body.appendChild(dgc); if (bCancel) document.getElementById("nd-cancel").onclick = function () { window.neatDialog.close(); }; this.elt = dgc; window.neatDialog = this; } } NeatDialog.prototype.close = function () { if (this.elt) { this.elt.style.display = "none"; this.elt.parentNode.removeChild(this.elt); } window.neatDialog = null; } function openDialog() { var sHTML = '
' + '
' + '' + '' + '
' + '
' + '
' + '
' + '
' + '
' + '
'; new NeatDialog(sHTML, "", false); //document.onmousewheel = function (evt) { // evt = evt ? evt : event; // event.preventDefault(); // document.getElementById("kxright").scrollTop = document.getElementById("kxright").scrollTop - event.wheelDelta; //} document.getElementById("kxright").style.cssText = "width:675px; height:" + Dialogheight + "px; overflow-x:hidden; float:left; padding:0px; margin:0px; border-right:4px solid #e9e9e9; border-left:4px solid #e9e9e9;"; } function link() { window.neatDialog.close(); window.location.href = "https://web.archive.org/web/20160418173511/http://www.fawan.com/Article/fwkx/index.html"; } function closeDialog() { window.neatDialog.close(); //document.onmousewheel = function (evt) { // evt = evt ? evt : event; // event.preventDefault(); // document.body.scrollTop = document.body.scrollTop - event.wheelDelta; //} }    function goTopEx() { var obj = document.getElementById("goTopBtn"); function getScrollTop() { return document.documentElement.scrollTop + document.body.scrollTop; } function setScrollTop(value) { if (document.documentElement.scrollTop) { document.documentElement.scrollTop = value; } else { document.body.scrollTop = value; } } window.onscroll = function () { getScrollTop() > 0 ? obj.style.display = "" : obj.style.display = "none"; } obj.onclick = function () { var goTop = setInterval(scrollMove, 10); function scrollMove() { setScrollTop(getScrollTop() / 1.1); if (getScrollTop() < 1) clearInterval(goTop); } } }    #goTopBtn { POSITION: fixed; TEXT-ALIGN: center; LINE-HEIGHT: 30px; WIDTH: 58px; BOTTOM: 35px; HEIGHT: 58px; FONT-SIZE: 12px; CURSOR: pointer; RIGHT: 0px; _position: absolute; _right: auto; }    DIV.neat-dialog-cont { Z-INDEX: 98; BACKGROUND: none transparent scroll repeat 0% 0%; LEFT: 0px; WIDTH: 100%; POSITION: absolute; TOP: 266px; HEIGHT: 100%; }   a:hover { text-decoration: underline; color: #333333; } body { background: #f7f7f7; }    
The Wayback Machine - https://web.archive.org/web/20160418173511/http://www.fawan.com/
   openDialog(); //触发滚动时调整关闭快讯位置 document.onscroll = function () { var h = document.body.scrollTop; if ((h >= 0) && (h <= 266)) { document.getElementById("kxclose").style.top = "-1805px"; } else if ((h > 266) && (h <= 1906)) { document.getElementById("kxclose").style.top = (-1805 - 266 + h) + "px"; } else { document.getElementById("kxclose").style.top = "-165px"; } }      goTopEx();      function ShowEwmimage() { if (window.neatDialog == null) { wxewm.style.display = ""; } } function CloseEwmimage() { wxewm.style.display = "none"; }    首页 微博 微信    APP下载   分类信息    var sWeek = new Array("星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"); var dNow = new Date(); var CalendarData = new Array(100); var madd = new Array(12); var tgString = "甲乙丙丁戊己庚辛壬癸"; var dzString = "子丑寅卯辰巳午未申酉戌亥"; var numString = "一二三四五六七八九十"; var monString = "正二三四五六七八九十冬腊"; var weekString = "日一二三四五六"; var sx = "鼠牛虎兔龙蛇马羊猴鸡狗猪"; var cYear, cMonth, cDay, TheDate; CalendarData = new Array(0xA4B, 0x5164B, 0x6A5, 0x6D4, 0x415B5, 0x2B6, 0x957, 0x2092F, 0x497, 0x60C96, 0xD4A, 0xEA5, 0x50DA9, 0x5AD, 0x2B6, 0x3126E, 0x92E, 0x7192D, 0xC95, 0xD4A, 0x61B4A, 0xB55, 0x56A, 0x4155B, 0x25D, 0x92D, 0x2192B, 0xA95, 0x71695, 0x6CA, 0xB55, 0x50AB5, 0x4DA, 0xA5B, 0x30A57, 0x52B, 0x8152A, 0xE95, 0x6AA, 0x615AA, 0xAB5, 0x4B6, 0x414AE, 0xA57, 0x526, 0x31D26, 0xD95, 0x70B55, 0x56A, 0x96D, 0x5095D, 0x4AD, 0xA4D, 0x41A4D, 0xD25, 0x81AA5, 0xB54, 0xB6A, 0x612DA, 0x95B, 0x49B, 0x41497, 0xA4B, 0xA164B, 0x6A5, 0x6D4, 0x615B4, 0xAB6, 0x957, 0x5092F, 0x497, 0x64B, 0x30D4A, 0xEA5, 0x80D65, 0x5AC, 0xAB6, 0x5126D, 0x92E, 0xC96, 0x41A95, 0xD4A, 0xDA5, 0x20B55, 0x56A, 0x7155B, 0x25D, 0x92D, 0x5192B, 0xA95, 0xB4A, 0x416AA, 0xAD5, 0x90AB5, 0x4BA, 0xA5B, 0x60A57, 0x52B, 0xA93, 0x40E95); madd[0] = 0; madd[1] = 31; madd[2] = 59; madd[3] = 90; madd[4] = 120; madd[5] = 151; madd[6] = 181; madd[7] = 212; madd[8] = 243; madd[9] = 273; madd[10] = 304; madd[11] = 334; function GetBit(m, n) { return (m >> n) & 1; } function e2c() { TheDate = (arguments.length != 3) ? new Date() : new Date(arguments[0], arguments[1], arguments[2]); var total, m, n, k; var isEnd = false; var tmp = TheDate.getFullYear(); total = (tmp - 1921) * 365 + Math.floor((tmp - 1921) / 4) + madd[TheDate.getMonth()] + TheDate.getDate() - 38; if (TheDate.getYear() % 4 == 0 && TheDate.getMonth() > 1) { total++; } for (m = 0; ; m++) { k = (CalendarData[m] < 0xfff) ? 11 : 12; for (n = k; n >= 0; n--) { if (total <= 29 + GetBit(CalendarData[m], n)) { isEnd = true; break; } total = total - 29 - GetBit(CalendarData[m], n); } if (isEnd) break; } cYear = 1921 + m; cMonth = k - n + 1; cDay = total; if (k == 12) { if (cMonth == Math.floor(CalendarData[m] / 0x10000) + 1) { cMonth = 1 - cMonth; } if (cMonth > Math.floor(CalendarData[m] / 0x10000) + 1) { cMonth--; } } } function GetcDateString() { var tmp = ""; tmp += tgString.charAt((cYear - 4) % 10); tmp += dzString.charAt((cYear - 4) % 12); tmp += "年 "; if (cMonth < 1) { tmp += "(闰)"; tmp += monString.charAt(-cMonth - 1); } else { tmp += monString.charAt(cMonth - 1); } tmp += "月"; tmp += (cDay < 11) ? "初" : ((cDay < 20) ? "十" : ((cDay < 30) ? "廿" : "三十")); if (cDay % 10 != 0 || cDay == 10) { tmp += numString.charAt((cDay - 1) % 10); } return tmp; } function GetLunarDay(solarYear, solarMonth, solarDay) { if (solarYear < 1921 || solarYear > 2020) { return ""; } else { solarMonth = (parseInt(solarMonth) > 0) ? (solarMonth - 1) : 11; e2c(solarYear, solarMonth, solarDay); return GetcDateString(); } } var D = new Date(); var yy = D.getFullYear(); var mm = D.getMonth() + 1; var dd = D.getDate(); var ww = D.getDay(); var ss = parseInt(D.getTime() / 1000); function getFullYear(d) {// 修正firefox下year错误 yr = d.getYear(); if (yr < 1000) yr += 1900; return yr; } function showDate() { var sValue = getFullYear(dNow) + "年" + (dNow.getMonth() + 1) + "月" + dNow.getDate() + "日" + " " + sWeek[dNow.getDay()] + " "; sValue += GetLunarDay(yy, mm, dd); document.getElementById("pDate").innerHTML = sValue; }; window.onload = showDate;   员工邮箱 设为首页               function verifyquery(form) { if (form.range.value == 1) { form.insite.value = ''; } else { form.insite.value = form.insite2.value } }                    “爱佑益+”联手摩...   “2016中国VR产业...   坐巴士,在韩国旅行   专属中国人的旅伴 ...   在南山看过“首尔...   与“韩尚帮帮”一...   VR将改变旅游生态            今日要闻 法晚快讯 法晚直播 国际时政 国内社会 法制焦点 国防军事 法晚视频 法晚镜界 专题报道 辟谣 漫评 汽车 北京新闻 即时快评 财经金融 娱乐前沿 劲爆体育 数码科技 教育动态 VR资讯 房产 家居 分类信息 综治 时尚 旅游                   官方微博    官方微信    搜狐客户端      电子报    法晚秒拍    全景新闻             快讯    衡阳市水利局总工程师高银生接受组织调查      衡阳市国土局党组书记、局长邹高帆接受组织调查      衡阳市经济干部学校校长、党委书记张志坚接受组织调查      平顶山市人民政府副市长郑理接受组织调查      四川师大杀室友嫌犯患精神病?真相原来是这样      贵州大学校长:不明白中国空姐为何要长得漂亮      郑州两男子殴打环卫工反被围殴后续:因张贴小广告被…      四川达州警方:网传“达州某娱乐城发生杀人案”不属实      福建警方就网传“岩峰村持刀男子事件”回应:未接到…      警方通报:那个掌掴顺丰快递小哥的中年男子因寻衅滋…          var scrollInterval = setInterval("scrollkuaixunf(document.getElementById('scrollkuaixun'))", 20); function scrollkuaixunf(obj) { var tmp = (obj.scrollLeft)++; //当滚动条到达右边顶端时 if (obj.scrollLeft == tmp) obj.innerHTML += obj.innerHTML; //当滚动条滚动了初始内容的宽度时滚动条回到最左端 if (obj.scrollLeft >= obj.firstChild.offsetWidth) obj.scrollLeft = 0; } function stopscrollkuaixun() { clearInterval(scrollInterval); } function startscrollkuaixun() { scrollInterval = setInterval("scrollkuaixunf(document.getElementById('scrollkuaixun'))", 20); }                 $(function () { var sWidth = $("#focus").width(); //获取焦点图的宽度(显示面积) var len = $("#focus ul li").length; //获取焦点图个数 var index = 0; var picTimer; //以下代码添加数字按钮和按钮后的半透明条,还有上一页、下一页两个按钮 var btn = "
"; for (var i = 0; i < len; i++) { btn += ""; } btn += "
"; $("#focus").append(btn); $("#focus .btnBg").css("opacity", 0.3); //为小按钮添加鼠标滑入事件,以显示相应的内容 $("#focus .btn span").css("opacity", 0.4).mouseenter(function () { index = $("#focus .btn span").index(this); showPics(index); }).eq(0).trigger("mouseenter"); //上一页、下一页按钮透明度处理 $("#focus .preNext").css("opacity", 0.2).hover(function () { $(this).stop(true, false).animate({ "opacity": "0.5" }, 300); }, function () { $(this).stop(true, false).animate({ "opacity": "0.2" }, 300); }); //上一页按钮 $("#focus .pre").click(function () { index -= 1; if (index == -1) { index = len - 1; } showPics(index); }); //下一页按钮 $("#focus .next").click(function () { index += 1; if (index == len) { index = 0; } showPics(index); }); //本例为左右滚动,即所有li元素都是在同一排向左浮动,所以这里需要计算出外围ul元素的宽度 $("#focus ul").css("width", sWidth * (len)); //鼠标滑上焦点图时停止自动播放,滑出时开始自动播放 $("#focus").hover(function () { clearInterval(picTimer); }, function () { picTimer = setInterval(function () { showPics(index); index++; if (index == len) { index = 0; } }, 4000); //此4000代表自动播放的间隔,单位:毫秒 }).trigger("mouseleave"); //显示图片函数,根据接收的index值显示相应的内容 function showPics(index) { //普通切换 var nowLeft = -index * sWidth; //根据index值计算ul元素的left值 $("#focus ul").stop(true, false).animate({ "left": nowLeft }, 300); //通过animate()调整ul元素滚动到计算出的position //$("#focus .btn span").removeClass("on").eq(index).addClass("on"); //为当前的按钮切换到选中的效果 $("#focus .btn span").stop(true, false).animate({ "opacity": "0.4" }, 300).eq(index).stop(true, false).animate({ "opacity": "1" }, 300); //为当前的按钮切换到选中的效果 } });   /* qqshop focus */ #focus {width:670px; height:290px; overflow:hidden; position:relative;} #focus ul {height:330px; position:absolute; padding-left:0px; margin:0px;} #focus ul li {float:left; width:670px; height:290px; overflow:hidden; position:relative; background:#f6f6f6;} /**#focus ul li div {position:absolute; }*/ #focus .btnBg {position:absolute; width:670px; height:20px; left:0; bottom:0;}/*取消下方背景色取消 background:#000;*/ #focus .btn {position:absolute; width:650px; height:17px; padding:5px 10px; right:0; bottom:0; text-align:right;} #focus .btn span {display:inline-block; _display:inline; _zoom:1; width:25px; height:10px; _font-size:0; margin-left:5px; cursor:pointer; background:#cecece;} #focus .btn span.on {background:#cecece;} #focus .preNext {width:35px; height:100px; position:absolute; top:110px; background:url(https://web.archive.org/web/20160418173511im_/http://www.fawan.com/images/2014fawan/index/mainpic/sprite.png) no-repeat 0 0; cursor:pointer;} #focus .pre {left:0;} #focus .next {right:210px; background-position:right top;} .fotext{ line-height:22px; color:#666; font-family:"微软雅黑"; padding:10px; width:190px; height:290px; overflow:hidden; float:right; font-size:14px; text-align:left; white-space:normal; word-break:break-all;} .fotext h1{ font-size:18px; color:#000;font-family:"Microsoft YaHei",SimHei; margin-bottom:10px; text-align:left;} .fotext h1 a{ color:#000; text-decoration:none;} .fotext h1 a:hover{ text-decoration:underline;}      一支琴曲送思礼     据新华社电,中共中央总书记、国家主席、中央军委主席习近平近日发唁电,对梁思礼同志逝世深表哀悼,向梁思礼同志的亲属表示慰问。   “黑户”母亲照片 她始终放在床边     吸毒的儿子打死儿媳被判刑,留下三个孩子,最大的10岁,最小的6岁。奶奶卓菌为此焦虑,自己已63岁,“不知有没有命把他们带大”。   顺丰快递员剐车后遭掌掴      一则关于顺丰快递员被打的视频在微博等社交媒体引发强烈关注。视频中,快递员因与一辆京牌轿车发生剐蹭,被打耳光。   常州市政府:指标符合国标     常州外国语学校是江苏省内较好的一所初中学校,是不少家长择校的首选。然而,自2015年年底开始,很多在校学生不断出现不良反应和疾病,家长怀疑与旁边的化工厂污染土地有关。记者调查发现,建校环评报告存在严重缺陷。    民大图书馆一人坠亡      4月17日晚上,有人在中央民族大学图书馆坠亡,有三名女生在现场泣不成声。记者了解到,家属正赶往学校,具体情况尚在调查中。       /*默认开始主图轮播*/ $().ready(function () { $('#slideshow').slide({ autoplay: true, duration: 5000, showSlideNumber: true }); });         “终身监禁”无条件执行    【终身监禁可扩至暴力犯罪】 【终身监禁引导民众变革死刑观念 】 【闹剧换来终身监禁?】        iPhone失宠 不再是标杆?”    【iPhone 6S电量显示“冻结”】 【iPhone6机舱内自燃】 【过半美国民众支持FBI解锁恐怖分子iPhone】        法晚视频        中国Costa咖啡大杯和中杯是不是一样多 【生活实验室】护眼灯护眼?其实没那么靠谱          要闻      河北省委常委张越被查    揽客进北大遇阻 他两撞保安   对门空置 她冒充房东出租   大风今劲吹 明夜将收势       天坛奖 让世界聚焦    国安求胜   飞絮致过敏 轻微可冷敷   本市立项研发“助老”机器人              span { display: block; font-size: 12px; }    法晚镜界       紫禁城的花都开好了,现在进宫赏花是极好的。     御花园以及去年才对外开放的慈宁宫花园、寿康宫都是赏花的绝佳去处。       特别是御花园,自每年3月至10月,御花园内各类花木次第开放。     紫禁城内的花花草草大多集中在后宫。       紫禁城内的花花草草大多集中在后宫。     自3月份开始,这些花木将陆续与游客见面。      jQuery(function (jq) { var pic1 = $("#jjpic1"); pic1.hover(function (el) { el = jq(this); el.find('#span1').stop().animate({ 'bottom': 148 }, 300); }, function (el) { el = jq(this); el.find('#span1').stop().animate({ 'bottom': 0 }, 300); }); var pic2 = $("#jjpic2"); pic2.hover(function (el) { el = jq(this); el.find('#span2').stop().animate({ 'bottom': 222 }, 300); }, function (el) { el = jq(this); el.find('#span2').stop().animate({ 'bottom': 0 }, 300); }); var pic3 = $("#jjpic3"); pic3.hover(function (el) { el = jq(this); el.find('#span3').stop().animate({ 'bottom': 240 }, 300); }, function (el) { el = jq(this); el.find('#span3').stop().animate({ 'bottom': 0 }, 300); }); var pic4 = $("#jjpic4"); pic4.hover(function (el) { el = jq(this); el.find('#span4').stop().animate({ 'bottom': 131 }, 300); }, function (el) { el = jq(this); el.find('#span4').stop().animate({ 'bottom': 0 }, 300); }); var pic5 = $("#jjpic5"); pic5.hover(function (el) { el = jq(this); el.find('#span5').stop().animate({ 'bottom': 173 }, 300); }, function (el) { el = jq(this); el.find('#span5').stop().animate({ 'bottom': 0 }, 300); }); var pic6 = $("#jjpic6"); pic6.hover(function (el) { el = jq(this); el.find('#span6').stop().animate({ 'bottom': 197 }, 300); }, function (el) { el = jq(this); el.find('#span6').stop().animate({ 'bottom': 0 }, 300); }); });          { function change_navigation1(id, total) { document.getElementById('navigation1_' + id).style.display = "block"; if (id == 1) { document.getElementById('navigationbar1_' + id).style.cssText = "float:left; width:95px; height:31px; border-right:1px solid #bfbfbf; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 42px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (id == 2) { document.getElementById('navigationbar1_' + id).style.cssText = "float:left; width:102px; height:31px; border-right:1px solid #bfbfbf; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 46px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (id == 3) { document.getElementById('navigationbar1_' + id).style.cssText = "float:left; width:94px; height:31px; border-right:1px solid #bfbfbf; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 42px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (id == 4) { document.getElementById('navigationbar1_' + id).style.cssText = "float:left; width:102px; height:31px; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 46px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } for (navigation1_i = 1; navigation1_i <= total; navigation1_i++) { if (navigation1_i != id) { document.getElementById('navigation1_' + navigation1_i).style.display = "none"; if (navigation1_i == 1) { document.getElementById('navigationbar1_' + navigation1_i).style.cssText = "float:left; width:95px; height:30px; border-right:1px solid #bfbfbf; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (navigation1_i == 2) { document.getElementById('navigationbar1_' + navigation1_i).style.cssText = "float:left; width:102px; height:30px; border-right:1px solid #bfbfbf; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (navigation1_i == 3) { document.getElementById('navigationbar1_' + navigation1_i).style.cssText = "float:left; width:94px; height:30px; border-right:1px solid #bfbfbf; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (navigation1_i == 4) { document.getElementById('navigationbar1_' + navigation1_i).style.cssText = "float:left; width:102px; height:30px; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } } } } }     国防军事 深读中国 法晚暗访 丽案调查      changedivname = '1_1'    var times = 1;//出现次数初始化      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  “新舟”60增雨机开展国内首次结冰探测…   13:17      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  中国海军机关整编 内设机构和编制员额…   13:11      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  首架C-130J民用型运输机开工 预计市场…   13:10      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  美国陆军新型战术导弹开始研制 射程近5…   13:08      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  河南整治部队房地产遗留问题   13:05      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  解放军一训练队集140名精英   13:04      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  美对“伊斯兰国”发起网络战   16:24      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  苏联造多艘航母如今俄仅剩一艘   15:52       中国降落伞试跳员每2天冒1次生…  /UploadFiles/mil/2016/3/201603231313286959.jpg /mil/hqjq/2016/03/23/131216329243.html document.getElementById('imgsrc').id = 'imgsrc' + changedivname; document.getElementById('imghref').id = 'imghref' + changedivname; var jimgsrc = document.getElementById('imgsrc' + changedivname).innerHTML; var jimghref = document.getElementById('imghref' + changedivname).innerHTML; document.getElementById('jimgdiv').id = 'img' + changedivname; document.getElementById('img' + changedivname).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img' + changedivname).onclick = Function("window.open('" + jimghref + "');"); 试验跳伞是一项特殊的职业,一具降落伞合不合格,必须通过试跳员多次试跳检验,才能…     changedivname = '1_2'    var times = 1;//出现次数初始化      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  广西防城港:“液化石油气泄露火灾事故…   21:05      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  男子在昆明持刀袭路人被击毙   15:04      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  广东消防五条官微怒斥残忍火灾拍摄者   08:40      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  四川警方通报四川师范大学学生被砍头案   17:43      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  山东警方通报 “企业老板纠集他人殴打…   17:23      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  湖南省纪委今天下午通报四名官员接受组…   16:53      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  大学男生遭室友砍头 嫌疑人被刑拘   16:51      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  江苏一男子因琐事杀害继子 已被抓获   16:19       四川警方:“四川城市职业学院…  /UploadFiles/tegao/2016/4/201604180910035482.jpg /tegao/sdzg/2016/04/17/203355332661.html document.getElementById('imgsrc').id = 'imgsrc' + changedivname; document.getElementById('imghref').id = 'imghref' + changedivname; var jimgsrc = document.getElementById('imgsrc' + changedivname).innerHTML; var jimghref = document.getElementById('imghref' + changedivname).innerHTML; document.getElementById('jimgdiv').id = 'img' + changedivname; document.getElementById('img' + changedivname).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img' + changedivname).onclick = Function("window.open('" + jimghref + "');"); 法晚记者从四川省成都市公安局龙泉驿区分局获悉,4月16日6时54分许,四川省成都市龙…     changedivname = '1_3'    var times = 1;//出现次数初始化      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  被曝光鱿鱼丝企业停产   15:55      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  鱿鱼丝含甲醛 北京至少查获8次   13:17      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  八宝山外 葬店私自代存骨灰   15:36      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  微商卖工具 5秒能开汽车门   13:28      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  检出类似伟哥成分 微商朋友圈卖药酒   14:05      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  俩无证幼儿园藏身别墅   14:52      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  暗访黑救护车医院揽客   15:15      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  “什么病都能给你干掉”   13:17       暗访网售医院病假条 微信付款…  /UploadFiles/tegao/2016/4/201604180911563935.jpg /tegao/fwaf/2016/04/15/145953332392.html document.getElementById('imgsrc').id = 'imgsrc' + changedivname; document.getElementById('imghref').id = 'imghref' + changedivname; var jimgsrc = document.getElementById('imgsrc' + changedivname).innerHTML; var jimghref = document.getElementById('imghref' + changedivname).innerHTML; document.getElementById('jimgdiv').id = 'img' + changedivname; document.getElementById('img' + changedivname).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img' + changedivname).onclick = Function("window.open('" + jimghref + "');"); “还在为五一变短、欧洲杯黑白颠倒发愁?一个电话,我们帮您解决所有烦恼!病假条在…     changedivname = '1_4'    var times = 1;//出现次数初始化      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  刷单组织者:3·15晚会 给我们做广告了   14:34      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  网红这条路 还能走多久   13:01      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  故宫文物修复师:工作时聊个天都不行   14:49      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  给北京的水 弄脏了咋喝   12:29      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  巧家投毒案保姆 春节照生平第一张全家福   14:46      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  爱心承诺为什么没下文?   12:59      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  考研“枪手”忏悔:负于众人之督望   16:01      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  “战拖”过来人:组织小伙伴“打卡”   15:20       郎永淳 大数据一定能帮钢铁业…  /UploadFiles/tegao/2016/3/201603311051206553.jpg /tegao/latc/2016/03/30/163624330239.html document.getElementById('imgsrc').id = 'imgsrc' + changedivname; document.getElementById('imghref').id = 'imghref' + changedivname; var jimgsrc = document.getElementById('imgsrc' + changedivname).innerHTML; var jimghref = document.getElementById('imghref' + changedivname).innerHTML; document.getElementById('jimgdiv').id = 'img' + changedivname; document.getElementById('img' + changedivname).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img' + changedivname).onclick = Function("window.open('" + jimghref + "');"); “我以前是坐而论道,现在是起而行之。”坐在北京市朝阳区一座5A写字楼宽敞明亮办公…            { function change_navigation2(id, total) { document.getElementById('navigation2_' + id).style.display = "block"; if (id == 1) { document.getElementById('navigationbar2_' + id).style.cssText = "float:left; width:97px; height:31px; border-right:1px solid #bfbfbf; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 43px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (id == 2) { document.getElementById('navigationbar2_' + id).style.cssText = "float:left; width:96px; height:31px; border-right:1px solid #bfbfbf; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 43px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (id == 3) { document.getElementById('navigationbar2_' + id).style.cssText = "float:left; width:97px; height:31px; border-right:1px solid #bfbfbf; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 43px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (id == 4) { document.getElementById('navigationbar2_' + id).style.cssText = "float:left; width:96px; height:31px; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 43px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } for (navigation2_i = 1; navigation2_i <= total; navigation2_i++) { if (navigation2_i != id) { document.getElementById('navigation2_' + navigation2_i).style.display = "none"; if (navigation2_i == 1) { document.getElementById('navigationbar2_' + navigation2_i).style.cssText = "float:left; width:97px; height:30px; border-right:1px solid #bfbfbf; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (navigation2_i == 2) { document.getElementById('navigationbar2_' + navigation2_i).style.cssText = "float:left; width:96px; height:30px; border-right:1px solid #bfbfbf; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (navigation2_i == 3) { document.getElementById('navigationbar2_' + navigation2_i).style.cssText = "float:left; width:97px; height:30px; border-right:1px solid #bfbfbf; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (navigation2_i == 4) { document.getElementById('navigationbar2_' + navigation2_i).style.cssText = "float:left; width:96px; height:30px; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } } } } }     北京新闻 北京城事 北京社区 北京服务      changedivname = '2_1'    var times = 1;//出现次数初始化      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  联合电动入驻回龙观大中   15:39      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  16号线北段 7月“洞通”   15:36      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  清华回应校长会见山寨捐赠者   15:34      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  至少61疫苗涉案人被控制   15:29      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  发现涉案疫苗 将及时公布   15:24      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  密云第一小学普及税法 人人都是小宣传员   14:40      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  北大公开遴选副校长   14:28      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  海淀幼升小 拟推一房6年一学位   14:26       八宝山殡仪馆 取消停车费  /UploadFiles/2016/3/201603250954045714.jpg /bjxw/2016/03/24/153140329440.html document.getElementById('imgsrc').id = 'imgsrc' + changedivname; document.getElementById('imghref').id = 'imghref' + changedivname; var jimgsrc = document.getElementById('imgsrc' + changedivname).innerHTML; var jimghref = document.getElementById('imghref' + changedivname).innerHTML; document.getElementById('jimgdiv').id = 'img' + changedivname; document.getElementById('img' + changedivname).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img' + changedivname).onclick = Function("window.open('" + jimghref + "');"); 清明临近,八宝山殡仪馆首次向公众开放,揭秘“人生的最后一程”。昨天下午1点,八…     changedivname = '2_2'    var times = 1;//出现次数初始化      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  祭扫重点日 8时至11时易堵   14:23      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  女职工产假 拟最高休7个月   14:19      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  减少机动车排污 纳入政府实事   14:17      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  首趟入闽旅游专列 今日始发   15:50      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  国贸站高峰换乘客流降15%   15:42      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  今春沙尘天 预计4至6天   15:40      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  北京站将安装自动检票闸机   15:38      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  北京西站南广场将直通南三环   15:32       北京植物园 首推赏花地图  /UploadFiles/2016/3/201603251000187877.jpg /bjzc/2016/03/23/154708329450.html document.getElementById('imgsrc').id = 'imgsrc' + changedivname; document.getElementById('imghref').id = 'imghref' + changedivname; var jimgsrc = document.getElementById('imgsrc' + changedivname).innerHTML; var jimghref = document.getElementById('imghref' + changedivname).innerHTML; document.getElementById('jimgdiv').id = 'img' + changedivname; document.getElementById('img' + changedivname).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img' + changedivname).onclick = Function("window.open('" + jimghref + "');"); 又是一年春暖花开的时候,北京植物园第28届桃花节暨第13届世界名花展今日拉开帷幕,…     changedivname = '2_3'    var times = 1;//出现次数初始化      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  环球主题公园 地铁站 向全球招标   15:19      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  533家接种门诊 疫苗安全   15:12      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  三万张照片留东城记忆   15:18      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  清华自招选汽车设计人才   15:15      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  “小升初”特长生比例 今年不超5%   15:13      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  计生条例修正案审议 邀您来旁听   15:12      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  本市确诊第四例黄热病患者   15:11      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  周末迎清明祭扫首个高峰   15:10       节约用水 独立计量进社区  /UploadFiles/2016/3/201603251002365255.jpg /bjsq/2016/03/22/151730329458.html document.getElementById('imgsrc').id = 'imgsrc' + changedivname; document.getElementById('imghref').id = 'imghref' + changedivname; var jimgsrc = document.getElementById('imgsrc' + changedivname).innerHTML; var jimghref = document.getElementById('imghref' + changedivname).innerHTML; document.getElementById('jimgdiv').id = 'img' + changedivname; document.getElementById('img' + changedivname).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img' + changedivname).onclick = Function("window.open('" + jimghref + "');"); 今天是第二十四个“世界水日”,市自来水集团的职工来到海淀区牡丹园西里小区,为居…     changedivname = '2_4'    var times = 1;//出现次数初始化      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  全市五环内不再新设架空线   12:10      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  长安街沿线将更换新站牌   12:07      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  今日京城启动“入春”进程   10:11      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  北大自招新增3个专业 与清华错峰考试   09:44      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  明日7时天安门广场周边道路将适时交通管制   09:50      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  门头沟山村现3.5米深盗洞 原址史载为古寺   09:24      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  “两会”交通:明日13时天安门广场周边道路…   15:48      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  故宫午门端门东华门区域明天至16日暂停开放   19:13       湖南老人走丢 北京站“热心大…  /UploadFiles/Article/2016/3/201603231002280191.jpg /bjfw/2016/03/22/164626329134.html document.getElementById('imgsrc').id = 'imgsrc' + changedivname; document.getElementById('imghref').id = 'imghref' + changedivname; var jimgsrc = document.getElementById('imgsrc' + changedivname).innerHTML; var jimghref = document.getElementById('imghref' + changedivname).innerHTML; document.getElementById('jimgdiv').id = 'img' + changedivname; document.getElementById('img' + changedivname).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img' + changedivname).onclick = Function("window.open('" + jimghref + "');"); “太感谢您了,要不然我不知道怎么办了?”导游唐小姐抱着北京站售票车间职工杨爱今…                { function change_navigation3(id, total) { document.getElementById('navigation3_' + id).style.display = "block"; if (id == 1) { document.getElementById('navigationbar3_' + id).style.cssText = "float:left; width:90px; height:31px; border-right:1px solid #bfbfbf; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 40px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (id == 2) { document.getElementById('navigationbar3_' + id).style.cssText = "float:left; width:95px; height:31px; border-right:1px solid #bfbfbf; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 42px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (id == 3) { document.getElementById('navigationbar3_' + id).style.cssText = "float:left; width:92px; height:31px; border-right:1px solid #bfbfbf; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 41px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (id == 4) { document.getElementById('navigationbar3_' + id).style.cssText = "float:left; width:94px; height:31px; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 42px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } for (navigation3_i = 1; navigation3_i <= total; navigation3_i++) { if (navigation3_i != id) { document.getElementById('navigation3_' + navigation3_i).style.display = "none"; if (navigation3_i == 1) { document.getElementById('navigationbar3_' + navigation3_i).style.cssText = "float:left; width:90px; height:30px; border-right:1px solid #bfbfbf; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (navigation3_i == 2) { document.getElementById('navigationbar3_' + navigation3_i).style.cssText = "float:left; width:95px; height:30px; border-right:1px solid #bfbfbf; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (navigation3_i == 3) { document.getElementById('navigationbar3_' + navigation3_i).style.cssText = "float:left; width:92px; height:30px; border-right:1px solid #bfbfbf; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (navigation3_i == 4) { document.getElementById('navigationbar3_' + navigation3_i).style.cssText = "float:left; width:94px; height:30px; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } } } } }     国际时政 国内社会 财经金融 法制焦点      changedivname = '3_1'; imgnumber = 1;     var times = 1;//出现次数初始化      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  奥巴马冒雨逛哈瓦那老城   15:43      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  复飞失败 900米高空坠落   14:31      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  我驻加纳使馆 发布安全提醒   14:29      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  土耳其旅游区再遇袭   14:28      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  奥巴马“破冰” 今访古巴   14:22      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  阿根廷首次就击沉中国渔船表态   14:05        韩称朝发射5枚短程发射体  /UploadFiles/2016/3/201603231249462026.jpg /politic/2016/03/22/155943329207.html  document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_big'; document.getElementById('imghref').id = 'imghref' + changedivname + '_big'; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_big').innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_big').innerHTML; document.getElementById('jimgdiv').id = 'img' + changedivname; document.getElementById('fatherdiv').id = 'fatherdiv' + changedivname; document.getElementById('img' + changedivname).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img' + changedivname).onclick = Function("window.open('" + jimghref + "')");        韩称朝发射5枚短程发射体 /UploadFiles/2016/3/201603231249462026.jpg /politic/2016/03/22/155943329207.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   英特尔传奇CEO辞世 /UploadFiles/2016/3/201603231247165414.jpg /politic/2016/03/22/155656329208.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   美校辟谣中国学生成负担 /UploadFiles/2016/3/201603231242485047.jpg /politic/2016/03/22/155027329209.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   世纪会面 /UploadFiles/2016/3/201603231238135167.jpg /politic/2016/03/22/154715329210.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   iPhone6机舱内自燃 /UploadFiles/2016/3/201603231237456266.jpg /politic/2016/03/21/154950329211.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;      changedivname = '3_2'; imgnumber = 1;     var times = 1;//出现次数初始化      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  9药企疑致非法疫苗流入   15:45      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  通州地税借力政府微信公众平台—— “互联…   15:44      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  “百色助学性侵案”上午开庭   15:43      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  广州航班延误预警解除   15:41      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  侵权专利支付赔偿后可使用   15:39      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  灯具带电 宜家全球召回   15:48        广东省原工商局长被双开  /UploadFiles/2016/3/201603231242454599.jpg /society/2016/03/21/154746329218.html  document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_big'; document.getElementById('imghref').id = 'imghref' + changedivname + '_big'; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_big').innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_big').innerHTML; document.getElementById('jimgdiv').id = 'img' + changedivname; document.getElementById('fatherdiv').id = 'fatherdiv' + changedivname; document.getElementById('img' + changedivname).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img' + changedivname).onclick = Function("window.open('" + jimghref + "')");        广东省原工商局长被双开 /UploadFiles/2016/3/201603231242454599.jpg /society/2016/03/21/154746329218.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   昆明急派十四集团军增援… /UploadFiles/2016/3/201603231237522111.jpg /society/2016/03/21/154322329219.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   城市出租车管理办法废除 /UploadFiles/2016/3/201603231236522093.jpg /society/2016/03/21/154150329220.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   12种涉案疫苗名单公布 /UploadFiles/2016/3/201603231236179450.jpg /society/2016/03/21/153707329221.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   京港澳高速爆炸致5死20伤 /UploadFiles/2016/3/201603231233535129.jpg /society/2016/03/20/142456329222.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;      changedivname = '3_3'; imgnumber = 1;     var times = 1;//出现次数初始化      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  30万在京浙商转移 落户河北   12:54      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  76%企业热盼“国际化” 中关村成立“一带一…   11:10      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  网传86年1元硬币市场价12万元   18:45      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  2016年底金融销售“双录”全面推广   09:15      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  全球25大创新公共机构 中科院上榜   14:17      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  寒潮天气和春节致CPI重返2时代   10:18        这些和我们生活有关的事,都有着落了  /UploadFiles/2016/3/201603231114397508.jpg /finance/2016/03/23/111450329191.html  document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_big'; document.getElementById('imghref').id = 'imghref' + changedivname + '_big'; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_big').innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_big').innerHTML; document.getElementById('jimgdiv').id = 'img' + changedivname; document.getElementById('fatherdiv').id = 'fatherdiv' + changedivname; document.getElementById('img' + changedivname).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img' + changedivname).onclick = Function("window.open('" + jimghref + "')");        这些和我们生活有关的事… /UploadFiles/2016/3/201603231114397508.jpg /finance/2016/03/23/111450329191.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   今年人民币汇率是升,还… /UploadFiles/2016/3/201603231111550826.jpg /finance/2016/03/23/111210329187.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   第三套人民币 5 元可以… /UploadFiles/2016/3/201603231108074636.jpg /finance/2016/03/23/110818329184.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   个人二手房买卖改征增值… /UploadFiles/2016/3/201603231102360962.jpg /finance/2016/03/23/110244329179.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   熊猫金币沉的越久价值越高 /UploadFiles/2016/3/201603231058281226.jpg /finance/2016/03/23/105836329177.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;       changedivname = '3_4'; imgnumber = 1;     var times = 1;//出现次数初始化      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  母亲误葬他人墓 儿子迁坟   14:59      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  便衣小分队 专防偷拿祭品   14:24      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  “北京同一首歌”欠200万不还   15:18      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  不孝女动手 被父母轰出家   15:14      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  持枪抢车 三里屯拒捕撞车   15:13      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  民告官案占七成 避免不当干预   16:04        网红这条路 还能走多久  /UploadFiles/2016/3/201603261215587087.jpg /fz/2016/03/23/130121329598.html  document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_big'; document.getElementById('imghref').id = 'imghref' + changedivname + '_big'; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_big').innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_big').innerHTML; document.getElementById('jimgdiv').id = 'img' + changedivname; document.getElementById('fatherdiv').id = 'fatherdiv' + changedivname; document.getElementById('img' + changedivname).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img' + changedivname).onclick = Function("window.open('" + jimghref + "')");        网红这条路 还能走多久 /UploadFiles/2016/3/201603261215587087.jpg /fz/2016/03/23/130121329598.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   称“小米e贷”侵权 小米… /UploadFiles/2016/3/201603261222415119.jpg /fz/2016/03/22/153838329599.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   借免费足疗骗老人百万 /UploadFiles/2016/3/201603261218181203.jpg /fz/2016/03/22/152909329600.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   夜盗电缆 影响10余万手… /UploadFiles/2016/3/201603261218504521.jpg /fz/2016/03/21/152652329601.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   醉酒溺亡 妻女告酒友 /UploadFiles/2016/3/201603261219276754.jpg /fz/2016/03/21/152400329602.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;             { function change_navigation4(id, total) { document.getElementById('navigation4_' + id).style.display = "block"; if (id == 1) { document.getElementById('navigationbar4_' + id).style.cssText = "float:left; width:90px; height:31px; border-right:1px solid #bfbfbf; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 40px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (id == 2) { document.getElementById('navigationbar4_' + id).style.cssText = "float:left; width:94px; height:31px; border-right:1px solid #bfbfbf; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 42px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (id == 3) { document.getElementById('navigationbar4_' + id).style.cssText = "float:left; width:92px; height:31px; border-right:1px solid #bfbfbf; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 41px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (id == 4) { document.getElementById('navigationbar4_' + id).style.cssText = "float:left; width:96px; height:31px; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 43px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } for (navigation1_i = 1; navigation1_i <= total; navigation1_i++) { if (navigation1_i != id) { document.getElementById('navigation4_' + navigation1_i).style.display = "none"; if (navigation1_i == 1) { document.getElementById('navigationbar4_' + navigation1_i).style.cssText = "float:left; width:90px; height:30px; border-right:1px solid #bfbfbf; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (navigation1_i == 2) { document.getElementById('navigationbar4_' + navigation1_i).style.cssText = "float:left; width:94px; height:30px; border-right:1px solid #bfbfbf; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (navigation1_i == 3) { document.getElementById('navigationbar4_' + navigation1_i).style.cssText = "float:left; width:92px; height:30px; border-right:1px solid #bfbfbf; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (navigation1_i == 4) { document.getElementById('navigationbar4_' + navigation1_i).style.cssText = "float:left; width:96px; height:30px; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } } } } }     娱乐前沿 劲爆体育 教育动态 数码科技      changedivname = '4_1'; imgnumber = 1;     var times = 1;//出现次数初始化      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  “廷”靠谱   16:06      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  “宽”心路   16:05      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  长跑常新   16:04      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  三年之约   16:03      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  大师添彩   16:02      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  双雄争霸   16:01        田亮等众星继续关注疫苗问题  /UploadFiles/2016/3/201603231038311058.jpg /ent/2016/03/23/103837329163.html  document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_big'; document.getElementById('imghref').id = 'imghref' + changedivname + '_big'; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_big').innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_big').innerHTML; document.getElementById('jimgdiv').id = 'img' + changedivname; document.getElementById('fatherdiv').id = 'fatherdiv' + changedivname; document.getElementById('img' + changedivname).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img' + changedivname).onclick = Function("window.open('" + jimghref + "')");        田亮等众星继续关注疫苗… /UploadFiles/2016/3/201603231038311058.jpg /ent/2016/03/23/103837329163.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   《琅琊榜》将于日本播出 /UploadFiles/2016/3/201603231035231524.jpg /ent/2016/03/23/103602329160.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   《特工爷爷》再走江湖 /UploadFiles/2016/3/201603231029030952.jpg /ent/2016/03/23/102912329158.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   《梦想合伙人》曝海报 /UploadFiles/2016/3/201603231027253218.jpg /ent/2016/03/23/102732329155.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   宋仲基被赞“史上最帅学… /UploadFiles/2016/3/201603231025470376.jpg /ent/2016/03/23/102553329154.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;     changedivname = '4_2'; imgnumber = 1;     var times = 1;//出现次数初始化      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  姚明入选名人堂 成为亚洲第一人   13:43      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  北京槐房建设全生态国际足球小镇   13:01      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  除了狂攻 没有退路   13:43      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  德比初体验   15:57      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  冠军归属 问责归谁?   15:54      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  中国第三金 里约有“远”景   15:51        梅西跑动距离最低!仅高于门将  /UploadFiles/2016/4/201604151614458063.jpg /sports/2016/04/15/161449332432.html  document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_big'; document.getElementById('imghref').id = 'imghref' + changedivname + '_big'; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_big').innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_big').innerHTML; document.getElementById('jimgdiv').id = 'img' + changedivname; document.getElementById('fatherdiv').id = 'fatherdiv' + changedivname; document.getElementById('img' + changedivname).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img' + changedivname).onclick = Function("window.open('" + jimghref + "')");        梅西跑动距离最低!仅高… /UploadFiles/2016/4/201604151614458063.jpg /sports/2016/04/15/161449332432.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   北京槐房全生态“国际足… /UploadFiles/2016/3/201603301322294155.jpg /sports/2016/03/30/125728330089.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   这一次 不想愁眉苦脸应战 /UploadFiles/Article/2016/3/201603241534469266.jpg /sports/2016/03/24/134541329393.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   欧洲杯无法被推迟 考虑… /UploadFiles/2016/3/201603231016492078_S.jpg /sports/2016/03/23/101654329147.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   梅西跑动仅比门将多 西… /UploadFiles/2016/2/201602261323313389.jpg /sports/2016/02/26/132342326503.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;     changedivname = '4_3'; imgnumber = 1;     var times = 1;//出现次数初始化      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  2016年义务教育入学办法下午公布   11:07      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  民办教师首次纳入职称体系   10:21      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  物资学院一论文涉抄袭多处一字不差   08:55      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  北外综合评价招生 高考分仅占70%   09:52      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  甘肃一教师殴打多名女生,施暴者已调离   16:31      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  王娜娜回应调查组“线索中断”结论   15:11        世界大学学科排名发布  /UploadFiles/Article/2016/3/201603231042136281.jpg /Article/Youthszk/2016/03/23/103844329164.html  document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_big'; document.getElementById('imghref').id = 'imghref' + changedivname + '_big'; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_big').innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_big').innerHTML; document.getElementById('jimgdiv').id = 'img' + changedivname; document.getElementById('fatherdiv').id = 'fatherdiv' + changedivname; document.getElementById('img' + changedivname).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img' + changedivname).onclick = Function("window.open('" + jimghref + "')");        世界大学学科排名发布 /UploadFiles/Article/2016/3/201603231042136281.jpg /Article/Youthszk/2016/03/23/103844329164.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   95 后:部分学生成“吃… /UploadFiles/Article/2016/3/201603231036305351.jpg /Article/Youthszk/2016/03/23/103653329161.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   英国母亲新型教育方式引… /UploadFiles/Article/2016/3/201603231029090112.jpg /Article/Youthszk/2016/03/23/102742329156.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   如何选择适合自己阅读水… /UploadFiles/Article/2016/3/201603231024274582.jpg /Article/Youthszk/2016/03/23/102440329153.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   日本化学教科书遭吐槽:… /UploadFiles/2016/3/201603231017014659.jpg /Article/Youthszk/2016/03/23/101704329148.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;     changedivname = '4_4'; imgnumber = 1;     var times = 1;//出现次数初始化      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  “上升”的华为 碰撞“下降”的联想   14:11      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  手机厂商大举切入PC市场 前十阵营面临洗牌   14:07      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  硅谷明星创业者:教育机器人创业的三大陷阱   14:04      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  AT&T;爱立信争相与汽车厂商合作:开发车联网   14:00      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  过半美国民众支持FBI解锁恐怖分子iPhone   13:57      document.getElementById('newlist').id = changedivname; if (times == 1) { document.getElementById(changedivname).style.cssText = "width:300px; color:#000; font-size:14px; font-weight:800; height:21px; padding-top:4px; float:left;"; } times++;  谷歌人工智能挑战人类围棋冠军   13:55        亚马逊将免运费购物额上调至49美元  /UploadFiles/Article/2016/2/201602231351241269.jpg /Article/fw3czk/2016/02/23/135132326119.html  document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_big'; document.getElementById('imghref').id = 'imghref' + changedivname + '_big'; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_big').innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_big').innerHTML; document.getElementById('jimgdiv').id = 'img' + changedivname; document.getElementById('fatherdiv').id = 'fatherdiv' + changedivname; document.getElementById('img' + changedivname).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img' + changedivname).onclick = Function("window.open('" + jimghref + "')");        亚马逊将免运费购物额上… /UploadFiles/Article/2016/2/201602231351241269.jpg /Article/fw3czk/2016/02/23/135132326119.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   5G有多火?Facebook求带 /UploadFiles/Article/2016/2/201602231349165165.jpg /Article/fw3czk/2016/02/23/134925326118.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   创业者都哪去了? /UploadFiles/Article/2016/2/201602231343150511.jpg /Article/fw3czk/2016/02/23/134324326114.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   扎克伯格评论:同情苹果 /UploadFiles/Article/2016/2/201602231340359099.jpg /Article/fw3czk/2016/02/23/134043326111.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;   Fitbit公司前景仍不明朗 /UploadFiles/Article/2016/2/201602231337185205.jpg /Article/fw3czk/2016/02/23/133726326109.html  if (imgnumber == 1) { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); document.getElementById('2fatherdiv' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } else { document.getElementById('imgsrc').id = 'imgsrc' + changedivname + '_small' + imgnumber; document.getElementById('imghref').id = 'imghref' + changedivname + '_small' + imgnumber; document.getElementById('jimgdiv_small').id = 'jimgdiv_small' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc' + changedivname + '_small' + imgnumber).innerHTML; var jimghref = document.getElementById('imghref' + changedivname + '_small' + imgnumber).innerHTML; document.getElementById('2fatherdiv').id = '2fatherdiv' + changedivname + imgnumber; document.getElementById('jimgdiv_small' + changedivname + imgnumber).style.cssText = "width:148px; height:95px; background:url('" + jimgsrc + "') no-repeat 0 0; cursor:pointer;"; document.getElementById('jimgdiv_small' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "')"); } imgnumber++;                { function change_navigation5(id, total) { document.getElementById('navigation5_' + id).style.display = "block"; if (id == 1) { document.getElementById('navigationbar5_' + id).style.cssText = "float:left; width:63px; height:31px; border-right:1px solid #bfbfbf; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 26px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (id == 2) { document.getElementById('navigationbar5_' + id).style.cssText = "float:left; width:56px; height:31px; border-right:1px solid #bfbfbf; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 23px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (id == 3) { document.getElementById('navigationbar5_' + id).style.cssText = "float:left; width:64px; height:31px; border-right:1px solid #bfbfbf; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 27px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } for (navigation1_i = 1; navigation1_i <= total; navigation1_i++) { if (navigation1_i != id) { document.getElementById('navigation5_' + navigation1_i).style.display = "none"; if (navigation1_i == 1) { document.getElementById('navigationbar5_' + navigation1_i).style.cssText = "float:left; width:63px; height:30px; border-right:1px solid #bfbfbf; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (navigation1_i == 2) { document.getElementById('navigationbar5_' + navigation1_i).style.cssText = "float:left; width:56px; height:30px; border-right:1px solid #bfbfbf; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (navigation1_i == 3) { document.getElementById('navigationbar5_' + navigation1_i).style.cssText = "float:left; width:64px; height:30px; border-right:1px solid #bfbfbf; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } } } } }     汽车 房产 家居      changedivname = '5_1'; imgnumber = 1;    德媒:尾气门事件给德系三强发展埋下阴影   大众尾气门的曝光和发酵加剧了市场对德系车的整体不信任情绪。从近来大众、宝马、奔驰的市场遭遇来看,似乎也印证了外界担忧:尾气门事件已…     东本召回事件:日本汽配世界垄断地位堪忧?   日前,东风本田根据《缺陷汽车产品召回管理条例》的要求,向国家质检总局备案了召回计划,决定自2016年7月31日起,召回2006年4月12日至2012…     边建平:国产乘用车市场聚合效应的背后玄机   现在,人们越来越相信宇宙的诞生来自一次大爆炸,虽然这只是个理论假说。但是在国产乘用车市场,类似的大爆炸却真的发生了:平安信德研究发…     气囊门召回解读:日系与欧美系召回的大不同   2月22日,又有累计134万多辆汽车将被召回,涉及召回车辆为丰田(中国)、天津一汽丰田、东风本田和广汽本田生产。加上上周及本月初的几起召回…        春节助推车市开门红 1月销量前10/…  /UploadFiles/auto/2016/2/201602231432057748.jpg http://auto.fawan.com/auto_List/2016/02/23/143214326141.html 2月是传统春节的缘故,使得汽车的需求得到充分释放,从而助推多家车企在1月份迎来开门红。 document.getElementById('imgsrc-cj1').id = 'imgsrc-cj1' + changedivname + imgnumber; document.getElementById('imghref-cj1').id = 'imghref-cj1' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc-cj1' + changedivname + imgnumber).innerHTML; var jimghref = document.getElementById('imghref-cj1' + changedivname + imgnumber).innerHTML; document.getElementById('jimgdiv-cj1').id = 'img_cj1_big' + changedivname + imgnumber; document.getElementById('img_cj1_big' + changedivname + imgnumber).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img_cj1_big' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "');"); imgnumber++;    马自达或将缺席巴黎车展 不愿打酱油  /UploadFiles/auto/2016/2/201602231430059939.jpg http://auto.fawan.com/auto_List/2016/02/23/143018326139.html 据美国《汽车新闻》报道,继福特及沃尔沃分别表示将不参与今年的巴黎车展之后,马自达可能也将缺席今年的巴黎车展。 document.getElementById('imgsrc-cj1').id = 'imgsrc-cj1' + changedivname + imgnumber; document.getElementById('imghref-cj1').id = 'imghref-cj1' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc-cj1' + changedivname + imgnumber).innerHTML; var jimghref = document.getElementById('imghref-cj1' + changedivname + imgnumber).innerHTML; document.getElementById('jimgdiv-cj1').id = 'img_cj1_big' + changedivname + imgnumber; document.getElementById('img_cj1_big' + changedivname + imgnumber).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img_cj1_big' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "');"); imgnumber++;     changedivname = '5_2'; imgnumber = 1;    北京南城社区配套需加快升级   在2016年北京商务工作会议上,程红副市长表示,“十三五”期间,一刻钟社区服务圈将全面覆盖北京城六区。今年北京市将新增100个一刻钟社区服务…     校划片意见江门引热议 学位房白买了吗?   当前,子女受教育问题往往是一个家庭的头等大事之一。子女未来能入读哪所学校,这也往往是一个家庭置业时重点考虑的问题。学位与房子挂钩,这就…     春节楼盘成交冬眠 买家热情未降   据搜房网的统计数据显示,在春节期间广州全市共成交20套一手房,与去年同期相比减少17套,同比下滑46%。作为淡季,春节本来就不是传统购房节点…     新政吹暖京城楼市 超七成房源调高挂牌价   2月19日,财政部、国税总局、住建部联合发布通知,自2016年2月22日起,调整房地产交易环节契税、营业税优惠政策。尽管北京为代表的一线城市暂不…        一线城市楼市亟须“降火” 挤出炒…  /UploadFiles/house/2016/2/201602261321064347.jpg http://house.fawan.com/house_List/2016/02/26/132112326501.html 今年春节后的中国楼市有三大表现:一是三四线城市借助相关政策加快“去库存”;二是一线城市房地产市场异常火爆;三是在国家政策… document.getElementById('imgsrc-cj1').id = 'imgsrc-cj1' + changedivname + imgnumber; document.getElementById('imghref-cj1').id = 'imghref-cj1' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc-cj1' + changedivname + imgnumber).innerHTML; var jimghref = document.getElementById('imghref-cj1' + changedivname + imgnumber).innerHTML; document.getElementById('jimgdiv-cj1').id = 'img_cj1_big' + changedivname + imgnumber; document.getElementById('img_cj1_big' + changedivname + imgnumber).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img_cj1_big' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "');"); imgnumber++;    2016年北京新房市场或将"减量增价"  /UploadFiles/house/2016/2/201602261318398136.jpg http://house.fawan.com/house_List/2016/02/26/131900326500.html 在日前举行的北京晨报公益跑团联盟成立仪式暨2015年北京晨报地产家居颁奖典礼上,北京房地产业协会秘书长陈志透露,2015年北京… document.getElementById('imgsrc-cj1').id = 'imgsrc-cj1' + changedivname + imgnumber; document.getElementById('imghref-cj1').id = 'imghref-cj1' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc-cj1' + changedivname + imgnumber).innerHTML; var jimghref = document.getElementById('imghref-cj1' + changedivname + imgnumber).innerHTML; document.getElementById('jimgdiv-cj1').id = 'img_cj1_big' + changedivname + imgnumber; document.getElementById('img_cj1_big' + changedivname + imgnumber).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img_cj1_big' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "');"); imgnumber++;     changedivname = '5_3'; imgnumber = 1;    想要卫浴有情调 一定不能少了马赛克   卫浴空间虽然不大,但是在设计的时候也要用点心思呢,一个富有特色的位于能将业主的品味提升一个档次,还能提升整体家居的美感度。     厨房拐角巧利用 收纳其实并不难   厨房在每个家中的地位可谓是不言而喻,对于主妇们来说,如果厨房能使用的得心应手,那真是一大幸事了。所以,在厨房的装修上就一定要花费大心思。     家居不够清新雅致?植物来帮忙!   春天来了,每位正在装修业主都希望自己家多些绿色气息,其实这样的家居很简单就能拥有,栽植绿色植物。     万能的阁楼 怎么设计都合适!   阁楼设计的会比一般的层高要低一些,在采光方面也不尽人意,即使这样一个空间加入设计师的创意之后便会以让人惊讶的美好姿态出现。        软装搭配禁忌,侬晓得伐  /UploadFiles/2016/3/201603231128468580.jpg /jiaju/2016/03/23/112854329199.html 现在除了生意人和搞金融的朋友,风水意识都很一般。更别说那种软装上面的禁忌搭配了,今天本编就简单的介绍一些软装的禁忌搭配… document.getElementById('imgsrc-cj1').id = 'imgsrc-cj1' + changedivname + imgnumber; document.getElementById('imghref-cj1').id = 'imghref-cj1' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc-cj1' + changedivname + imgnumber).innerHTML; var jimghref = document.getElementById('imghref-cj1' + changedivname + imgnumber).innerHTML; document.getElementById('jimgdiv-cj1').id = 'img_cj1_big' + changedivname + imgnumber; document.getElementById('img_cj1_big' + changedivname + imgnumber).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img_cj1_big' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "');"); imgnumber++;    百变收纳——卧室玩出新花样  /UploadFiles/2016/3/201603231125380791.jpg /jiaju/2016/03/23/112547329198.html 卧室作为家中的私人空间,除了作为休息的场所只外,同时还承担着衣帽间、书房等空间的功能。因此小小的一间卧室中需要收纳的东… document.getElementById('imgsrc-cj1').id = 'imgsrc-cj1' + changedivname + imgnumber; document.getElementById('imghref-cj1').id = 'imghref-cj1' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc-cj1' + changedivname + imgnumber).innerHTML; var jimghref = document.getElementById('imghref-cj1' + changedivname + imgnumber).innerHTML; document.getElementById('jimgdiv-cj1').id = 'img_cj1_big' + changedivname + imgnumber; document.getElementById('img_cj1_big' + changedivname + imgnumber).style.cssText = "width:250px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:140px; cursor:pointer;"; document.getElementById('img_cj1_big' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "');"); imgnumber++;            { function change_navigation6(id, total) { document.getElementById('navigation6_' + id).style.display = "block"; if (id == 1) { document.getElementById('navigationbar6_' + id).style.cssText = "float:left; width:63px; height:31px; border-right:1px solid #bfbfbf; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 26px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (id == 2) { document.getElementById('navigationbar6_' + id).style.cssText = "float:left; width:64px; height:31px; border-right:1px solid #bfbfbf; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 27px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (id == 3) { document.getElementById('navigationbar6_' + id).style.cssText = "float:left; width:61px; height:31px; border-right:1px solid #bfbfbf; border-top:2px solid #b90000; background:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/selected.png') no-repeat 25px 0px #f6f6f6; font-weight:800; font-size:16px; color:#b90000; padding-top:7px; text-align:center; cursor:pointer;"; } for (navigation1_i = 1; navigation1_i <= total; navigation1_i++) { if (navigation1_i != id) { document.getElementById('navigation6_' + navigation1_i).style.display = "none"; if (navigation1_i == 1) { document.getElementById('navigationbar6_' + navigation1_i).style.cssText = "float:left; width:63px; height:30px; border-right:1px solid #bfbfbf; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (navigation1_i == 2) { document.getElementById('navigationbar6_' + navigation1_i).style.cssText = "float:left; width:64px; height:30px; border-right:1px solid #bfbfbf; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } else if (navigation1_i == 3) { document.getElementById('navigationbar6_' + navigation1_i).style.cssText = "float:left; width:61px; height:30px; border-right:1px solid #bfbfbf; border-top:2px solid #000000; border-bottom:1px solid #bfbfbf; background-color:#eeeeee; font-weight:800; font-size:16px; color:#000000; padding-top:7px; text-align:center; cursor:pointer;"; } } } } }     时尚 旅游 健康      changedivname = '6_1'; imgnumber = 1;    会穿横须贺外套的不止GD 井宝吴亦…   /UploadFiles/2016/3/201603261127505572.jpg /fashion/2016/03/26/112758329590.html document.getElementById('imgsrc-cj-big').id = 'imgsrc-cj-big' + changedivname + imgnumber; document.getElementById('imghref-cj-big').id = 'imghref-cj-big' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc-cj-big' + changedivname + imgnumber).innerHTML; var jimghref = document.getElementById('imghref-cj-big' + changedivname + imgnumber).innerHTML; document.getElementById('jimgdiv-cj2-big').id = 'img' + changedivname + imgnumber; document.getElementById('img' + changedivname + imgnumber).style.cssText = "width:295px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:336px; cursor:pointer;"; document.getElementById('img' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "');");  会穿横须贺外套的不止GD 井宝吴亦凡帅… document.getElementById('cj2_text_div').id = 'cj2_text_div' + changedivname + imgnumber; if (imgnumber == 1) { document.getElementById('cj2_text_div' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } baby 鹿晗cos宋仲基大走军装风 document.getElementById('cj2_text_div').id = 'cj2_text_div' + changedivname + imgnumber; if (imgnumber == 1) { document.getElementById('cj2_text_div' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } 杨幂教你暖和的早春 就要穿毛衣配裙子 document.getElementById('cj2_text_div').id = 'cj2_text_div' + changedivname + imgnumber; if (imgnumber == 1) { document.getElementById('cj2_text_div' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } 太子妃张天爱街拍 大长腿穿啥都好看 document.getElementById('cj2_text_div').id = 'cj2_text_div' + changedivname + imgnumber; if (imgnumber == 1) { document.getElementById('cj2_text_div' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } 宋慧乔赵丽颖只有155 穿对了照样美翻 document.getElementById('cj2_text_div').id = 'cj2_text_div' + changedivname + imgnumber; if (imgnumber == 1) { document.getElementById('cj2_text_div' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; }     杨幂用短夹克配铅笔裤 Get新技能   辣妈杨幂最近的机场街拍和私照都爱上了各种夹克,而且搭的都很时髦,绝对不能错过它们哦!     刘诗诗吴奇隆大婚 听说若曦婚纱300万   四爷和若曦终于办婚礼啦!浪漫巴厘岛的婚礼现场有上百位明星到场祝贺,整场婚礼更是一个大写的“壕”!     想和陈柏霖“相爱” 宋智孝靠的是美颜衣品赞   宋智孝与陈柏霖这对橙汁CP备受网友们的期待,两人站在一起就跟拍韩剧似的。     这样才能抓住欧巴宋仲基的心   宋仲基和宋慧乔的高颜值CP搭档也因为此剧而再次大火,仔细想想还是能发现这部剧爆红背后的秘密!       changedivname = '6_2'; imgnumber = 1;    另辟蹊径的杭州?太有料!   /UploadFiles/2016/3/201603231036255073.jpg /travel/2016/03/23/103814329162.html document.getElementById('imgsrc-cj-big').id = 'imgsrc-cj-big' + changedivname + imgnumber; document.getElementById('imghref-cj-big').id = 'imghref-cj-big' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc-cj-big' + changedivname + imgnumber).innerHTML; var jimghref = document.getElementById('imghref-cj-big' + changedivname + imgnumber).innerHTML; document.getElementById('jimgdiv-cj2-big').id = 'img' + changedivname + imgnumber; document.getElementById('img' + changedivname + imgnumber).style.cssText = "width:295px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:336px; cursor:pointer;"; document.getElementById('img' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "');");  另辟蹊径的杭州?太有料! document.getElementById('cj2_text_div').id = 'cj2_text_div' + changedivname + imgnumber; if (imgnumber == 1) { document.getElementById('cj2_text_div' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } 北京环球主题公园 到底有多吸引人 document.getElementById('cj2_text_div').id = 'cj2_text_div' + changedivname + imgnumber; if (imgnumber == 1) { document.getElementById('cj2_text_div' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } 千年莫高 大梦敦煌 document.getElementById('cj2_text_div').id = 'cj2_text_div' + changedivname + imgnumber; if (imgnumber == 1) { document.getElementById('cj2_text_div' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } 代表太阳的鼓楼是怎样建成的 document.getElementById('cj2_text_div').id = 'cj2_text_div' + changedivname + imgnumber; if (imgnumber == 1) { document.getElementById('cj2_text_div' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } 谁说火车站里的餐厅一定难吃?! document.getElementById('cj2_text_div').id = 'cj2_text_div' + changedivname + imgnumber; if (imgnumber == 1) { document.getElementById('cj2_text_div' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; }     全景南非 感受人生世界最南端   作为非洲热门旅游地的南非,正在这个春天向我们走来。在那里,我们可以邂逅野性非洲五霸,身临野兽捕猎之争,在那…     意大利有座全球最小的国家   在意大利一个叫做塔沃拉腊(Tavolara)的普通小岛上竟然存在着一个王国!然而整座岛屿,长才5公里,宽不过1公里。     西湖野外见闻录   在河西走廊的终端,由中原进入西域的最后一站便是敦煌。现在的人们早已忘记敦煌曾经的历史地位,只知道名扬天下的…     印度洒红节 这应该是最“好色”的节日了   每年春天,印度教徒最期待的事莫过于欢庆洒红节,洒红节也叫胡里节或色彩节。节日这天所有人一起沐浴在色彩斑斓的…       changedivname = '6_3'; imgnumber = 1;    5个小妙招让你跑步效果达到最佳   /UploadFiles/2016/3/201603231121092394.jpg /health/2016/03/23/112126329196.html document.getElementById('imgsrc-cj-big').id = 'imgsrc-cj-big' + changedivname + imgnumber; document.getElementById('imghref-cj-big').id = 'imghref-cj-big' + changedivname + imgnumber; var jimgsrc = document.getElementById('imgsrc-cj-big' + changedivname + imgnumber).innerHTML; var jimghref = document.getElementById('imghref-cj-big' + changedivname + imgnumber).innerHTML; document.getElementById('jimgdiv-cj2-big').id = 'img' + changedivname + imgnumber; document.getElementById('img' + changedivname + imgnumber).style.cssText = "width:295px; height:20px; background:url('" + jimgsrc + "') no-repeat 0 0; padding-top:336px; cursor:pointer;"; document.getElementById('img' + changedivname + imgnumber).onclick = Function("window.open('" + jimghref + "');");  5个小妙招让你跑步效果达到最佳 document.getElementById('cj2_text_div').id = 'cj2_text_div' + changedivname + imgnumber; if (imgnumber == 1) { document.getElementById('cj2_text_div' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } 这样吃梨润肺止咳 document.getElementById('cj2_text_div').id = 'cj2_text_div' + changedivname + imgnumber; if (imgnumber == 1) { document.getElementById('cj2_text_div' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } 怎样判断自己是否得了抑郁症? document.getElementById('cj2_text_div').id = 'cj2_text_div' + changedivname + imgnumber; if (imgnumber == 1) { document.getElementById('cj2_text_div' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } 午睡打盹儿超实用小方法 document.getElementById('cj2_text_div').id = 'cj2_text_div' + changedivname + imgnumber; if (imgnumber == 1) { document.getElementById('cj2_text_div' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; } 春天吃什么最养肝 常吃菠菜还可远离肝癌 document.getElementById('cj2_text_div').id = 'cj2_text_div' + changedivname + imgnumber; if (imgnumber == 1) { document.getElementById('cj2_text_div' + changedivname + imgnumber).style.cssText = "display:none; width:0px; height:0px;"; }     这些中成药用错伤心脏   许多人觉得中成药是从草药中提取的“天然成分”,多用点没关系。但其实,有些中成药超期或过量使用,可能加重心脏…     喝多少酒会有益健康   “适量饮酒有益健康”这个说法大致起源于1991年。在美国的一个电视节目中,有人提出了一个“法国悖论”——法国人…     住宅楼层可能影响寿命   瑞士的研究人员公布的一项最新研究表明,住得较高的人不仅健康状况好,而且寿命更长。     洗脸应该从下往上   洗脸看似是件简单的事,上下一搓,水一冲,毛巾一擦就行。其实,毫无章法地胡乱揉搓最伤皮肤。洗脸时尽量从下向上…                     法制晚报网-直播间         [03月03日] 2016全国两会   [01月20日] 2016北京两会   [12月05日] 2015中国企业领袖年会   [12月01日] 苦等风来吹雾霾   [11月23日] 北京暴雪   [11月14日] 巴黎枪击   [11月05日] 北京降雪   [10月31日] 俄罗斯客机坠毁   [10月26日] 阿富汗7.7级地震               { function change_navigation_weibo(id, total) { document.getElementById('navigation_weibo_' + id).style.display = "block"; if (id == 1) { document.getElementById('navigationbar_weibo_' + id).style.cssText = "width:106px; height:31px; border-bottom:2px solid #c10000; color:#c10000; background-image:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/arrow_up.png'); background-repeat:no-repeat; background-position:52px 27px; float:left; font-size:18px; font-weight:600; cursor:pointer;"; } else if (id == 2) { document.getElementById('navigationbar_weibo_' + id).style.cssText = "width:114px; height:31px; border-bottom:2px solid #c10000; color:#c10000; background-image:url('https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/arrow_up.png'); background-repeat:no-repeat; background-position:56px 27px; float:left; font-size:18px; font-weight:600; cursor:pointer;"; } for (navigation_weibo_i = 1; navigation_weibo_i <= total; navigation_weibo_i++) { if (navigation_weibo_i != id) { document.getElementById('navigation_weibo_' + navigation_weibo_i).style.display = "none"; if (navigation_weibo_i == 1) { document.getElementById('navigationbar_weibo_' + navigation_weibo_i).style.cssText = "width:106px; height:32px; border-bottom:1px solid #777676; color:#000000; float:left; font-size:18px; font-weight:600; cursor:pointer;"; } else if (navigation_weibo_i == 2) { document.getElementById('navigationbar_weibo_' + navigation_weibo_i).style.cssText = "width:114px; height:32px; border-bottom:1px solid #777676; color:#000000; float:left; font-size:18px; font-weight:600; cursor:pointer;"; } } } } }        法晚官微    壹现场                          漫·评           抢“生意”   优待   “无事”生非   地盘   赏景   堆成山                          约定的违约金高于实际造成的损失怎…    如何解决民间借贷纠纷?   丈夫因医疗事故死亡后财产如何处理?               (function (win, doc) { var s = doc.createElement("script"), h = doc.getElementsByTagName("head")[0]; if (!win.alimamatk_show) { s.charset = "gbk"; s.async = true; s.src = "https://web.archive.org/web/20160418173511/http://a.alimama.cn/tkapi.js"; h.insertBefore(s, h.firstChild); }; var o = { pid: "mm_56420165_6712429_22838686",/*推广单元ID,用于区分不同的推广渠道*/ appkey: "",/*通过TOP平台申请的appkey,设置后引导成交会关联appkey*/ unid: ""/*自定义统计字段*/ }; win.alimamatk_onload = win.alimamatk_onload || []; win.alimamatk_onload.push(o); })(window, document);         一周点击排行     var top_temp = 1;    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  血惊乐队吉他手疑强奸同队成员    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  广东消防五条官微怒斥残忍火灾…    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  老师布置了篇作文《成长的烦恼…    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  江苏常州就“学校搬迁致近500…    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  被打快递小哥已经到东花市派出…    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  今天下午海南高院与陈满协商国…    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  教授蹲七年冤狱 法院赔70万不…    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  两高:官员“终身监禁”不受服…    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  女儿为瘫痪母亲补卡遭拒 银行:…    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  看见车上插着钥匙 老总为限号…    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  被打快递小哥暂时安排休养    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  十余名官员“死缓”减为无期    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  四川警方回应“大学男生遭室友…    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  顺丰快递小哥被打一事警方已接…    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  成都四星级酒店内 来川旅游的2…    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  河南:3公务员欲公款消费遭拒 …    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  宜宾伊力集团董事长被绑架胁迫…    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  广东省政府原党组成员、副省长…    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  女子江边轻生 救人的居然是 七…    var bgurl = 'https://web.archive.org/web/20160418173511/http://www.fawan.com/images/2014fawan/index/top_' + top_temp + '.jpg'; document.getElementById('top_li').id = 'top_li' + top_temp; document.getElementById('top_li' + top_temp).style.cssText = "height:26px; background:url('" + bgurl + "') no-repeat 17px 7px; padding-left:45px; padding-top:4px; font-size:14px;"; top_temp++;  餐馆吃饭结账菜单收费1元 店方…           图图图                友情链接 北青网 千龙网 搜狐 网易 腾讯 新浪 卓望公司 凤凰网 北京晨报 苹果游戏 和讯网 今日头条 财经网 360 视觉中国 凤凰视频 慧科 中国经济网 健康时报       法晚介绍 | 联系我们 | 广告刊例 | 人才招聘 |版权声明   版权所有 法制晚报 2006 京ICP备12044572号 京新网备2010010号 京公网安备110105001258 本站通用网址:法制晚报     var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://"); document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3Fc3cf034dcbd403326997fb7d4dcfa096' type='text/javascript'%3E%3C/script%3E"));