jQuery.extend({ easing: { backEaseIn: function(e, g, a, d) { var f = a + d; var b = 1.70158; return f * (e /= 1) * e * ((b + 1) * e - b) + a }, backEaseOut: function(e, g, a, d) { var f = a + d; var b = 1.70158; return f * ((e = e / 1 - 1) * e * ((b + 1) * e + b) + 1) + a }, backEaseInOut: function(e, g, a, d) { var f = a + d; var b = 1.70158; if ((e /= 0.5) < 1) { return f / 2 * (e * e * (((b *= (1.525)) + 1) * e - b)) + a } else { return f / 2 * ((e -= 2) * e * (((b *= (1.525)) + 1) * e + b) + 2) + a } }, bounceEaseIn: function(e, g, b, d) { var f = b + d; var a = this.bounceEaseOut(1 - e, 1, 0, d); return f - a + b }, bounceEaseOut: function(d, f, a, b) { var e = a + b; if (d < (1 / 2.75)) { return e * (7.5625 * d * d) + a } else { if (d < (2 / 2.75)) { return e * (7.5625 * (d -= (1.5 / 2.75)) * d + 0.75) + a } else { if (d < (2.5 / 2.75)) { return e * (7.5625 * (d -= (2.25 / 2.75)) * d + 0.9375) + a } else { return e * (7.5625 * (d -= (2.625 / 2.75)) * d + 0.984375) + a } } } }, circEaseIn: function(d, f, a, b) { var e = a + b; return - e * (Math.sqrt(1 - (d /= 1) * d) - 1) + a }, circEaseOut: function(d, f, a, b) { var e = a + b; return e * Math.sqrt(1 - (d = d / 1 - 1) * d) + a }, circEaseInOut: function(d, f, a, b) { var e = a + b; if ((d /= 0.5) < 1) { return - e / 2 * (Math.sqrt(1 - d * d) - 1) + a } else { return e / 2 * (Math.sqrt(1 - (d -= 2) * d) + 1) + a } }, cubicEaseIn: function(d, f, a, b) { var e = a + b; return e * (d /= 1) * d * d + a }, cubicEaseOut: function(d, f, a, b) { var e = a + b; return e * ((d = d / 1 - 1) * d * d + 1) + a }, cubicEaseInOut: function(d, f, a, b) { var e = a + b; if ((d /= 0.5) < 1) { return e / 2 * d * d * d + a } else { return e / 2 * ((d -= 2) * d * d + 2) + a } }, elasticEaseIn: function(g, i, a, f) { var h = a + f; if (g == 0) { return a } if (g == 1) { return h } var e = 0.25; var d; var b = h; if (b < Math.abs(h)) { b = h; d = e / 4 } else { d = e / (2 * Math.PI) * Math.asin(h / b) } return - (b * Math.pow(2, 10 * (g -= 1)) * Math.sin((g * 1 - d) * (2 * Math.PI) / e)) + a }, elasticEaseOut: function(g, i, a, f) { var h = a + f; if (g == 0) { return a } if (g == 1) { return h } var e = 0.25; var d; var b = h; if (b < Math.abs(h)) { b = h; d = e / 4 } else { d = e / (2 * Math.PI) * Math.asin(h / b) } return - (b * Math.pow(2, -10 * g) * Math.sin((g * 1 - d) * (2 * Math.PI) / e)) + h }, expoEaseIn: function(d, f, a, b) { var e = a + b; return (d == 0) ? a: e * Math.pow(2, 10 * (d - 1)) + a - e * 0.001 }, expoEaseOut: function(d, f, a, b) { var e = a + b; return (d == 1) ? e: b * 1.001 * ( - Math.pow(2, -10 * d) + 1) + a }, expoEaseInOut: function(d, f, a, b) { var e = a + b; if (d == 0) { return a } if (d == 1) { return e } if ((d /= 0.5) < 1) { return e / 2 * Math.pow(2, 10 * (d - 1)) + a - e * 0.0005 } else { return e / 2 * 1.0005 * ( - Math.pow(2, -10 * --d) + 2) + a } }, quadEaseIn: function(d, f, a, b) { var e = a + b; return e * (d /= 1) * d + a }, quadEaseOut: function(d, f, a, b) { var e = a + b; return - e * (d /= 1) * (d - 2) + a }, quadEaseInOut: function(d, f, a, b) { var e = a + b; if ((d /= 0.5) < 1) { return e / 2 * d * d + a } else { return - e / 2 * ((--d) * (d - 2) - 1) + a } }, quartEaseIn: function(d, f, a, b) { var e = a + b; return e * (d /= 1) * d * d * d + a }, quartEaseOut: function(d, f, a, b) { var e = a + b; return - e * ((d = d / 1 - 1) * d * d * d - 1) + a }, quartEaseInOut: function(d, f, a, b) { var e = a + b; if ((d /= 0.5) < 1) { return e / 2 * d * d * d * d + a } else { return - e / 2 * ((d -= 2) * d * d * d - 2) + a } }, quintEaseIn: function(d, f, a, b) { var e = a + b; return e * (d /= 1) * d * d * d * d + a }, quintEaseOut: function(d, f, a, b) { var e = a + b; return e * ((d = d / 1 - 1) * d * d * d * d + 1) + a }, quintEaseInOut: function(d, f, a, b) { var e = a + b; if ((d /= 0.5) < 1) { return e / 2 * d * d * d * d * d + a } else { return e / 2 * ((d -= 2) * d * d * d * d + 2) + a } }, sineEaseIn: function(d, f, a, b) { var e = a + b; return - e * Math.cos(d * (Math.PI / 2)) + e + a }, sineEaseOut: function(d, f, a, b) { var e = a + b; return e * Math.sin(d * (Math.PI / 2)) + a }, sineEaseInOut: function(d, f, a, b) { var e = a + b; return - e / 2 * (Math.cos(Math.PI * d) - 1) + a } } }); (function(f) { var e = ["DOMMouseScroll", "mousewheel"]; f.event.special.mousewheel = { setup: function() { if (this.addEventListener) { for (var a = e.length; a;) { this.addEventListener(e[--a], d, false) } } else { this.onmousewheel = d } }, teardown: function() { if (this.removeEventListener) { for (var a = e.length; a;) { this.removeEventListener(e[--a], d, false) } } else { this.onmousewheel = null } } }; f.fn.extend({ mousewheel: function(a) { return a ? this.bind("mousewheel", a) : this.trigger("mousewheel") }, unmousewheel: function(a) { return this.unbind("mousewheel", a) } }); function d(b) { var h = [].slice.call(arguments, 1), a = 0, c = true; b = f.event.fix(b || window.event); b.type = "mousewheel"; if (b.wheelDelta) { a = b.wheelDelta / 120 } if (b.detail) { a = -b.detail / 3 } h.unshift(b, a); return f.event.handle.apply(this, h) } })(jQuery); $(document).ready(function() { var G = numberOfScreens; for (var D = 1; D <= G; D++) { $("#name" + D).html(blockName[D]) } if (hoverEffect) { for (D = 1; D <= G; D++) { $("").appendTo("head") } } if(hoverEffect){ for(D = 1; D <= G; D++){ $('').appendTo('head'); }; }; if (searchEngine == "google") { search = "http://www.google.com/search" } else { if (searchEngine == "bing") { search = "http://www.bing.com/search" } else { if (searchEngine == "gou") { search = "http://www.sogou.com/sogou" } else { search = "http://www.google.com/search"; searchEngine = "google" } } } $("form").attr("action", search); $("input:text").css("background", "#fff url(lib/" + searchEngine + "-back.png) center right no-repeat"); var E = $(window).width(); var F = $(window).height(); var y = Math.floor((E - 975) / 2); var x = y - 1045; var w = y - 2090; var v = y - 3135; var u = y - 4180; var t = y - 5225; var s = y - 6270; var r = y - 7315; var q = y - 8360; var zz= y - 9405; var K ; if(F>585) K = Math.floor((F - 585) / 2)-10; else K =0; $("#place").css({ left: y, top: K }); var k = 1; // $("#wrapper1 input:text").focus(); var e = true; function c() { // $("#wrapper1 input:text").focusout(); e = false; var E = $(window).width(); var F = $(window).height(); var y = Math.floor((E - 975) / 2); var x = y - 1045; $("#place").animate({ left: x }, 1000, "circEaseOut", function() { //$("#wrapper2 input:text").focus(); e = true; k = 2 }); $("#button1to2").hide(); $("#button2to1").show(); if (G > 2) { $("#button2to3").show(); $("#button3to2").hide() } } function o() { // $("#wrapper2 input:text").focusout(); e = false; var E = $(window).width(); var F = $(window).height(); var y = Math.floor((E - 975) / 2); //var x = y - 1045; $("#place").animate({ left: y }, 1000, "circEaseOut", function() { // $("#wrapper1 input:text").focus(); e = true; k = 1 }); $("#button1to2").show(); $("#button2to1").hide(); if (G > 2) { $("#button2to3").hide(); $("#button3to2").hide() } } function m() { //$("#wrapper2 input:text").focusout(); e = false; var E = $(window).width(); var F = $(window).height(); var y = Math.floor((E - 975) / 2); var w = y - 2090; $("#place").animate({ left: w }, 1000, "circEaseOut", function() { //$("#wrapper3 input:text").focus(); e = true; k = 3 }); $("#button1to2").hide(); $("#button3to2").show(); $("#button2to1").hide(); $("#button2to3").hide() } function J() { // $("#wrapper3 input:text").focusout(); e = false; var E = $(window).width(); var F = $(window).height(); var y = Math.floor((E - 975) / 2); var x = y - 1045; $("#place").animate({ left: x }, 1000, "circEaseOut", function() { //$("#wrapper2 input:text").focus(); e = true; k = 2 }); $("#button1to2").hide(); $("#button3to2").hide(); $("#button2to1").show(); $("#button2to3").show() } function H() { // $("#wrapper3 input:text").focusout(); e = false; var E = $(window).width(); var F = $(window).height(); var y = Math.floor((E - 975) / 2); var v = y - 3135; $("#place").animate({ left: v }, 1000, "circEaseOut", function() { //$("#wrapper4 input:text").focus(); e = true; k = 4 }); $("#button2to3").hide(); $("#button4to3").show(); $("#button3to2").hide(); $("#button3to4").hide() } function g() { // $("#wrapper4 input:text").focusout(); e = false; var E = $(window).width(); var F = $(window).height(); var y = Math.floor((E - 975) / 2); var w = y - 2090; $("#place").animate({ left: w }, 1000, "circEaseOut", function() { //$("#wrapper3 input:text").focus(); e = true; k = 3 }); $("#button2to3").hide(); $("#button4to3").hide(); $("#button3to2").show(); $("#button3to4").show() } function f() { // $("#wrapper4 input:text").focusout(); e = false; var E = $(window).width(); var F = $(window).height(); var y = Math.floor((E - 975) / 2); var u = y - 4180; $("#place").animate({ left: u }, 1000, "circEaseOut", function() { //$("#wrapper5 input:text").focus(); e = true; k = 5 }); $("#button3to4").hide(); $("#button5to4").show(); $("#button4to3").hide(); $("#button4to5").hide() } function A() { // $("#wrapper5 input:text").focusout(); e = false; var E = $(window).width(); var F = $(window).height(); var y = Math.floor((E - 975) / 2); var v = y - 3135; $("#place").animate({ left: v }, 1000, "circEaseOut", function() { //$("#wrapper4 input:text").focus(); e = true; k = 4 }); $("#button3to4").hide(); $("#button5to4").hide(); $("#button4to3").show(); $("#button4to5").show() } function z() { // $("#wrapper5 input:text").focusout(); e = false; var E = $(window).width(); var F = $(window).height(); var y = Math.floor((E - 975) / 2); var t = y - 5225; $("#place").animate({ left: t }, 1000, "circEaseOut", function() { //$("#wrapper6 input:text").focus(); e = true; k = 6 }); $("#button4to5").hide(); $("#button6to5").show(); $("#button5to4").hide(); $("#button5to6").hide() } function d() { // $("#wrapper6 input:text").focusout(); e = false; var E = $(window).width(); var F = $(window).height(); var y = Math.floor((E - 975) / 2); var u = y - 4180; $("#place").animate({ left: u }, 1000, "circEaseOut", function() { // $("#wrapper5 input:text").focus(); e = true; k = 5 }); $("#button4to5").hide(); $("#button6to5").hide(); $("#button5to4").show(); $("#button5to6").show() } function b() { //$("#wrapper6 input:text").focusout(); e = false; var E = $(window).width(); var F = $(window).height(); var y = Math.floor((E - 975) / 2); var s = y - 6270; $("#place").animate({ left: s }, 1000, "circEaseOut", function() { //$("#wrapper7 input:text").focus(); e = true; k = 7 }); $("#button5to6").hide(); $("#button7to6").show(); $("#button6to5").hide(); $("#button6to7").hide() } function n() { //$("#wrapper7 input:text").focusout(); e = false; var E = $(window).width(); var F = $(window).height(); var y = Math.floor((E - 975) / 2); var t = y - 5225; $("#place").animate({ left: t }, 1000, "circEaseOut", function() { //$("#wrapper6 input:text").focus(); e = true; k = 6 }); $("#button5to6").hide(); $("#button7to6").hide(); $("#button6to5").show(); $("#button6to7").show() } function l() { // $("#wrapper7 input:text").focusout(); e = false; var E = $(window).width(); var F = $(window).height(); var y = Math.floor((E - 975) / 2); var r = y - 7315; $("#place").animate({ left: r }, 1000, "circEaseOut", function() { //$("#wrapper8 input:text").focus(); e = true; k = 8 }); $("#button6to7").hide(); $("#button8to7").show(); $("#button7to6").hide(); $("#button7to8").hide() } function L() { // $("#wrapper8 input:text").focusout(); e = false; var E = $(window).width(); var F = $(window).height(); var y = Math.floor((E - 975) / 2); var s = y - 6270; $("#place").animate({ left: s }, 1000, "circEaseOut", function() { // $("#wrapper7 input:text").focus(); e = true; k = 7 }); $("#button6to7").hide(); $("#button8to7").hide(); $("#button7to6").show(); $("#button7to8").show() } function I() { // $("#wrapper8 input:text").focusout(); e = false; var E = $(window).width(); var F = $(window).height(); var y = Math.floor((E - 975) / 2); var q = y - 8360; $("#place").animate({ left: q }, 1000, "circEaseOut", function() { // $("#wrapper9 input:text").focus(); e = true; k = 9 }); $("#button7to8").hide(); $("#button9to8").show(); $("#button9to10").show(); $("#button10to9").hide(); $("#button8to7").hide(); $("#button8to9").hide() } function S() { // $("#wrapper9 input:text").focusout(); e = false; var E = $(window).width(); var F = $(window).height(); var y = Math.floor((E - 975) / 2); var zz= y - 9405; $("#place").animate({ left: zz }, 1000, "circEaseOut", function() { // $("#wrapper10 input:text").focus(); e = true; k = 10 }); $("#button8to9").hide(); $("#button10to9").show(); $("#button9to8").hide(); $("#button9to10").hide() } function h() { //$("#wrapper9 input:text").focusout(); e = false; var E = $(window).width(); var F = $(window).height(); var y = Math.floor((E - 975) / 2); var r = y - 7315; $("#place").animate({ left: r }, 1000, "circEaseOut", function() { // $("#wrapper8 input:text").focus(); e = true; k = 8 }); $("#button7to8").hide(); $("#button9to8").hide(); $("#button8to7").show(); $("#button8to9").show() } if (G > 1) { $("#button1to2").click(function() { c() }); $("#but2").click(function() { c() }); $("#button2to1").click(function() { o() }); $("#but1").click(function() { o() }); $("#but1-2").click(function() { o() }); $("#but1-3").click(function() { o() }); $("#but1-4").click(function() { o() }); $("#but1-5").click(function() { o() }); $("#but1-6").click(function() { o() }); $("#but1-7").click(function() { o() }); $("#but1-8").click(function() { o() }); $("#but1-9").click(function() { o() }); $("#but1-10").click(function() { o() }); if (G > 2) { $("#button2to3").click(function() { m() }); $("#but3").click(function() { m() }); $("#button3to2").click(function() { J() }); $("#but2").click(function() { J() }); $("#but2-2").click(function() { J() }); $("#but2-3").click(function() { J() }); $("#but2-4").click(function() { J() }); $("#but2-5").click(function() { J() }); $("#but2-6").click(function() { J() }); $("#but2-7").click(function() { J() }); $("#but2-8").click(function() { J() }); $("#but2-9").click(function() { J() }); $("#but2-10").click(function() { J() }); if (G > 3) { $("#button3to4").click(function() { H() }); $("#but4").click(function() { H() }); $("#button4to3").click(function() { g() }); $("#but3").click(function() { g() }); $("#but3-2").click(function() { g() }); $("#but3-3").click(function() { g() }); $("#but3-4").click(function() { g() }); $("#but3-5").click(function() { g() }); $("#but3-6").click(function() { g() }); $("#but3-7").click(function() { g() }); $("#but3-8").click(function() { g() }); $("#but3-9").click(function() { g() }); $("#but3-10").click(function() { g() }); if (G > 4) { $("#button4to5").click(function() { f() }); $("#but5").click(function() { f() }); $("#button5to4").click(function() { A() }); $("#but4").click(function() { A() }); $("#but4-2").click(function() { A() }); $("#but4-3").click(function() { A() }); $("#but4-4").click(function() { A() }); $("#but4-5").click(function() { A() }); $("#but4-6").click(function() { A() }); $("#but4-7").click(function() { A() }); $("#but4-8").click(function() { A() }); $("#but4-9").click(function() { A() }); $("#but4-10").click(function() { A() }); if (G > 5) { $("#button5to6").click(function() { z() }); $("#but6").click(function() { z() }); $("#button6to5").click(function() { d() }); $("#but5").click(function() { d() }); $("#but5-2").click(function() { d() }); $("#but5-3").click(function() { d() }); $("#but5-4").click(function() { d() }); $("#but5-5").click(function() { d() }); $("#but5-6").click(function() { d() }); $("#but5-7").click(function() { d() }); $("#but5-8").click(function() { d() }); $("#but5-9").click(function() { d() }); $("#but5-10").click(function() { d() }); if (G > 6) { $("#button6to7").click(function() { b() }); $("#but7").click(function() { b() }); $("#button7to6").click(function() { n() }); $("#but6").click(function() { n() }); $("#but6-2").click(function() { n() }); $("#but6-3").click(function() { n() }); $("#but6-4").click(function() { n() }); $("#but6-5").click(function() { n() }); $("#but6-6").click(function() { n() }); $("#but6-7").click(function() { n() }); $("#but6-8").click(function() { n() }); $("#but6-9").click(function() { n() }); $("#but6-10").click(function() { n() }); if (G > 7) { $("#button7to8").click(function() { l() }); $("#but8").click(function() { l() }); $("#button8to7").click(function() { L() }); $("#but7").click(function() { L() }); $("#but7-2").click(function() { L() }); $("#but7-3").click(function() { L() }); $("#but7-4").click(function() { L() }); $("#but7-5").click(function() { L() }); $("#but7-6").click(function() { L() }); $("#but7-7").click(function() { L() }); $("#but7-8").click(function() { L() }); $("#but7-9").click(function() { L() }); $("#but7-10").click(function() { L() }); if (G > 8) { $("#button8to9").click(function() { I() }); $("#but9").click(function() { I() }); $("#but10").click(function() { S() }); $("#but10-2").click(function() { S() }); $("#but10-3").click(function() { S() }); $("#but10-4").click(function() { S() }); $("#but10-5").click(function() { S() }); $("#but10-6").click(function() { S() }); $("#but10-7").click(function() { S() }); $("#but10-8").click(function() { S() }); $("#but10-9").click(function() { S() }); $("#but9-2").click(function() { I() }); $("#but9-3").click(function() { I() }); $("#but9-4").click(function() { I() }); $("#but9-5").click(function() { I() }); $("#but9-6").click(function() { I() }); $("#but9-7").click(function() { I() }); $("#but9-8").click(function() { I() }); $("#but9-9").click(function() { I() }); $("#but9-10").click(function() { I() }); $("#button9to8").click(function() { h() }); $("#button9to10").click(function() { S() }); $("#button10to9").click(function() { I() }); $("#but8").click(function() { h() }) $("#but8-2").click(function() { h() }) $("#but8-3").click(function() { h() }) $("#but8-4").click(function() { h() }) $("#but8-5").click(function() { h() }) $("#but8-6").click(function() { h() }) $("#but8-7").click(function() { h() }) $("#but8-8").click(function() { h() }) $("#but8-9").click(function() { h() }) $("#but8-10").click(function() { h() }) } } } } } } } } $(document).bind("keydown", function(i) { if (i.keyCode == "39" || i.keyCode == "37") { i.preventDefault() } if (i.which == "39" && e) { if (k == 1 && G > 1) { c() } if (k == 2 && G > 2) { m() } if (k == 3 && G > 3) { H() } if (k == 4 && G > 4) { f() } if (k == 5 && G > 5) { z() } if (k == 6 && G > 6) { b() } if (k == 7 && G > 7) { l() } if (k == 8 && G > 8) { I() } if (k == 9&& G > 9) { S() } } if (i.which == "37" && e) { if (k == 10) { I() } if (k == 9) { h() } if (k == 8) { L() } if (k == 7) { n() } if (k == 6) { d() } if (k == 5) { A() } if (k == 4) { g() } if (k == 3) { J() } if (k == 2) { o() } } }); $(document).mousewheel(function(i, j) { if (j > 0 && e) { if (k == 10) { I() } if (k == 9) { h() } if (k == 8) { L() } if (k == 7) { n() } if (k == 6) { d() } if (k == 5) { A() } if (k == 4) { g() } if (k == 3) { J() } if (k == 2) { o() } } else { if (j < 0 && e) { if (k == 1 && G > 1) { c() } if (k == 2 && G > 2) { m() } if (k == 3 && G > 3) { H() } if (k == 4 && G > 4) { f() } if (k == 5 && G > 5) { z() } if (k == 6 && G > 6) { b() } if (k == 7 && G > 7) { l() } if (k == 8 && G > 8) { I() } if (k == 9 && G > 9) { S() } } } i.preventDefault() }); var C = 0; for (C = 0; C <= (G - 1); C++) { for (D = 0; D <= 15; D++) { var p = bookmark[C][D]["title"]; var a = bookmark[C][D]["url"]; var B = bookmark[C][D]["thumb"]; if (B == "") { $("#thumb" + (C + 1) + "-" + (D + 1)).html('
'+p+'
'); } else { $("#thumb" + (C + 1) + "-" + (D + 1)).html('') } } } $("#thumb1-17").html('') $("#thumb1-18").html('') $("#thumb1-19").html('
新闻中心
') $("#thumb1-20").html('') $("#thumb1-21").html('') $("#thumb1-22").html('') $("#thumb1-23").html('
随手记
') $("#search-engine1").click(function() { $("#engines1").fadeToggle("fast", "circEaseOut"); $("#wrapper1 input:text").css("background", "#fff") }); $("#sogou").click(function() { $("#wrapper1 form").attr("action", "http://www.sogou.com/sogou"); $("#engines1").fadeToggle("fast", "circEaseOut"); $("#wrapper1 input:text").css("background", "#fff url(lib/gou-back.png) center right no-repeat"); $("#wrapper1 input:hidden").detach(); $("#wrapper1 input:first").attr("name", "query"); $('').appendTo("#wrapper1 form"); $("#wrapper1 input:text").focus(); $.cookie("mysearch", "sogou",{ expires: 365 }); }); $("#google1").click(function() { $("#wrapper1 form").attr("action", "http://www.google.com/search"); $("#engines1").fadeToggle("fast", "circEaseOut"); $("#wrapper1 input:text").css("background", "#fff url(lib/google-back.png) center right no-repeat"); $("#wrapper1 input:hidden").detach(); $("#wrapper1 input:first").attr("name", "q"); $("#wrapper1 input:text").focus(); $.cookie("mysearch", "google1",{ expires: 365 }); }); $("#bing1").click(function() { $("#wrapper1 form").attr("action", "http://www.bing.com/search"); $("#engines1").fadeToggle("fast", "circEaseOut"); $("#wrapper1 input:text").css("background", "#fff url(lib/bing-back.png) center right no-repeat"); $("#wrapper1 input:hidden").detach(); $("#wrapper1 input:first").attr("name", "q"); $("#wrapper1 input:text").focus(); $.cookie("mysearch", "bing1",{ expires: 365 }); }); $("#baidu").click(function() { $("#wrapper1 form").attr("action", "http://www.baidu.com/s"); $("#wrapper1 input:hidden").detach(); $("#wrapper1 input:first").attr("name", "wd"); $("#engines1").fadeToggle("fast", "circEaseOut"); $("#wrapper1 input:text").css("background", "#fff url(lib/baidu-back.png) center right no-repeat"); $("#wrapper1 input:text").focus(); $.cookie("mysearch", "baidu",{ expires: 365 }); }); $("#youku").click(function() { $("#wrapper1 form").attr("action", "http://www.soku.com/search_video/"); $("#wrapper1 input:hidden").detach(); $("#wrapper1 input:first").attr("name", "q"); $("#engines1").fadeToggle("fast", "circEaseOut"); $("#wrapper1 input:text").css("background", "#fff url(lib/youku-back.png) center right no-repeat"); $("#wrapper1 input:text").focus(); $.cookie("mysearch", "youku",{ expires: 365 }); }); if (G > 1) { $("#search-engine2").click(function() { $("#engines2").fadeToggle("fast", "circEaseOut"); $("#wrapper2 input:text").css("background", "#fff") }); $("#google2").click(function() { $("#wrapper2 form").attr("action", "http://www.google.com/search"); $("#engines2").fadeToggle("fast", "circEaseOut"); $("#wrapper2 input:text").css("background", "#fff url(lib/google-back.png) center right no-repeat"); $("#wrapper2 input:hidden").detach(); $("#wrapper2 input:first").attr("name", "q"); $("#wrapper2 input:text").focus() }); $("#bing2").click(function() { $("#wrapper2 form").attr("action", "http://www.bing.com/search"); $("#engines2").fadeToggle("fast", "circEaseOut"); $("#wrapper2 input:text").css("background", "#fff url(lib/bing-back.png) center right no-repeat"); $("#wrapper2 input:hidden").detach(); $("#wrapper2 input:first").attr("name", "q"); $("#wrapper2 input:text").focus() }); $("#yahoo2").click(function() { $("#wrapper2 form").attr("action", "http://search.yahoo.com/bin/search"); $("#engines2").fadeToggle("fast", "circEaseOut"); $("#wrapper2 input:text").css("background", "#fff url(lib/yahoo-back.png) center right no-repeat"); $("#wrapper2 input:hidden").detach(); $("#wrapper2 input:first").attr("name", "q"); $("#wrapper2 input:text").focus() }); $("#wikipedia2").click(function() { $("#wrapper2 form").attr("action", "http://www.wikipedia.org/search-redirect.php"); $("#wrapper2 input:first").attr("name", "search"); $('').appendTo("#wrapper2 form"); $("#engines2").fadeToggle("fast", "circEaseOut"); $("#wrapper2 input:text").css("background", "#fff url(lib/wikipedia-back.png) center right no-repeat"); $("#wrapper2 input:text").focus() }) } if (G > 2) { $("#search-engine3").click(function() { $("#engines3").fadeToggle("fast", "circEaseOut"); $("#wrapper3 input:text").css("background", "#fff") }); $("#google3").click(function() { $("#wrapper3 form").attr("action", "http://www.google.com/search"); $("#engines3").fadeToggle("fast", "circEaseOut"); $("#wrapper3 input:text").css("background", "#fff url(lib/google-back.png) center right no-repeat"); $("#wrapper3 input:hidden").detach(); $("#wrapper3 input:first").attr("name", "q"); $("#wrapper3 input:text").focus() }); $("#bing3").click(function() { $("#wrapper3 form").attr("action", "http://www.bing.com/search"); $("#engines3").fadeToggle("fast", "circEaseOut"); $("#wrapper3 input:text").css("background", "#fff url(lib/bing-back.png) center right no-repeat"); $("#wrapper3 input:hidden").detach(); $("#wrapper3 input:first").attr("name", "q"); $("#wrapper3 input:text").focus() }); $("#yahoo3").click(function() { $("#wrapper3 form").attr("action", "http://search.yahoo.com/bin/search"); $("#engines3").fadeToggle("fast", "circEaseOut"); $("#wrapper3 input:text").css("background", "#fff url(lib/yahoo-back.png) center right no-repeat"); $("#wrapper3 input:hidden").detach(); $("#wrapper3 input:first").attr("name", "q"); $("#wrapper3 input:text").focus() }); $("#wikipedia3").click(function() { $("#wrapper3 form").attr("action", "http://www.wikipedia.org/search-redirect.php"); $("input:first").attr("name", "search"); $('').appendTo("#wrapper3 form"); $("#engines3").fadeToggle("fast", "circEaseOut"); $("#wrapper3 input:text").css("background", "#fff url(lib/wikipedia-back.png) center right no-repeat"); $("#wrapper3 input:text").focus() }) } if (G < 9) { $("#name9").detach(); $("#wrapper9").detach(); $("#button8to9").detach(); $("#button9to8").detach() } if (G < 8) { $("#name8").detach(); $("#wrapper8").detach(); $("#button7to8").detach(); $("#button8to7").detach() } if (G < 7) { $("#name7").detach(); $("#wrapper7").detach(); $("#button6to7").detach(); $("#button7to6").detach() } if (G < 6) { $("#name6").detach(); $("#wrapper6").detach(); $("#button5to6").detach(); $("#button6to5").detach() } if (G < 5) { $("#name5").detach(); $("#wrapper5").detach(); $("#button4to5").detach(); $("#button5to4").detach() } if (G < 4) { $("#name4").detach(); $("#wrapper4").detach(); $("#button3to4").detach(); $("#button4to3").detach() } if (G < 3) { $("#name3").detach(); $("#wrapper3").detach(); $("#button2to3").detach(); $("#button3to2").detach() } if (G < 2) { $("#name2").detach(); $("#wrapper2").detach(); $("#button1to2").detach(); $("#button2to1").detach() } }); var hoverEffect = true; var searchEngine = "gou"; var numberOfScreens = 10; var blockName = new Array(); blockName[1] = "常用"; blockName[2] = "购物"; blockName[3] = "消遣"; blockName[4] = "旅游"; blockName[5] = "生活"; blockName[6] = "影视"; blockName[7] = "设计"; blockName[8] = "发现"; blockName[9] = "音乐"; blockName[10] = "查询"; var bookmark = new Array(); bookmark[0] = new Array(); bookmark[1] = new Array(); bookmark[2] = new Array(); bookmark[3] = new Array(); bookmark[4] = new Array(); bookmark[5] = new Array(); bookmark[6] = new Array(); bookmark[7] = new Array(); bookmark[8] = new Array(); bookmark[9] = new Array(); bookmark[10] = new Array(); bookmark[0][0] = { title: "淘宝网热卖", url: "http://ai.taobao.com/?from=channel&pid=mm_40482006_6294439_21694401&unid=&eventid=101329", thumb: "../../png/taobao.png" }; bookmark[0][1] = { title: "淘宝特惠", url: "http://temai.taobao.com/index.htm?pid=mm_40482006_6294439_21694401", thumb: "../../png/tbth.png" }; bookmark[0][2] = { title: "天猫精选品牌", url: "http://www.tmall.com/", thumb: "" }; bookmark[0][3] = { title: "美丽说购物", url: "http://www.meilishuo.com", thumb: "" }; bookmark[0][4] = { title: "携程旅游", url: "http://www.ctrip.com", thumb: "" }; bookmark[0][5] = { title: "烛光星空", url: "http://www.lovejia.cn", thumb: "../../UploadFile/logo/20166/201661719044163.png" }; bookmark[0][6] = { title: "新浪微博", url: "http://www.weibo.com/", thumb: "../../png/smallweibo.png" }; bookmark[0][7] = { title: "世导航", url: "http://www.4dh.cn/", thumb: "../../png/shidaohang.png" }; bookmark[0][8] = { title: "众诚鹏企", url: "http://www.zcpq.cn", thumb: "" }; bookmark[0][9] = { title: "淘宝网", url: "http://www.taobao.com?4dh.cn", thumb: "../../png/taobaowang.png" }; bookmark[0][10] = { title: "天猫国际", url: "http://www.tmall.hk?4dh.cn", thumb: "" }; bookmark[0][11] = { title: "优酷", url: "http://www.youku.com/?4dh.cn", thumb: "../../png/smallyouku.png" }; bookmark[0][12] = { title: "谷歌翻译", url: "http://translate.google.cn/", thumb: "../../png/translate.png" }; bookmark[0][13] = { title: "天猫超市", url: "https://chaoshi.tmall.com/liangfan.htm?ali_trackid=2:40482006_6294439_21694401:1445232477_3k7_1703798227", thumb: "" }; bookmark[0][14] = { title: "去哪儿", url: "http://dujia.qunar.com", thumb: "" }; bookmark[0][15] = { title: "用户中心", url: "/user/", thumb: "../../png/user.png" }; bookmark[0][16] = { title: "QQ空间", url: "http://qzone.qq.com/", thumb: "../../png/qzone.png" }; bookmark[1][0] = { title: "淘宝旅行", url: "https://www.alitrip.com", thumb: "../../png/taobaotrip.png" }; bookmark[1][1] = { title: "京东商城", url: "http://www.jd.com", thumb: "../../png/jd-small.png" }; bookmark[1][2] = { title: "1号店", url: "http://www.yhd.com", thumb: "../../png/yihaodian.png" }; bookmark[1][3] = { title: "男女春装", url: "http://temai.taobao.com/event5446.htm", thumb: "" }; bookmark[1][4] = { title: "当当网", url: "http://www.dangdang.com", thumb: "../../png/dangdang.png" }; bookmark[1][5] = { title: "蘑菇街", url: "http://www.mogujie.com/", thumb: "../../png/mogujie.png" }; bookmark[1][6] = { title: "亚马逊", url: "http://www.amazon.cn", thumb: "../../png/amazon.png" }; bookmark[1][7] = { title: "潮流服饰", url: "http://ai.taobao.com/auction/index.htm?pid=mm_40482006_6294439_21694401", thumb: "" }; bookmark[1][8] = { title: "乐峰网", url: "http://www.lefeng.com", thumb: "../../png/lefeng01.png" }; bookmark[1][9] = { title: "淘宝网热卖", url: "http://ai.taobao.com/?from=channel&pid=mm_40482006_6294439_21694401&unid=&eventid=101329", thumb: "../../png/taobao.png" }; bookmark[1][10] = { title: "淘宝特惠", url: "http://temai.taobao.com/index.htm?pid=mm_40482006_6294439_21694401", thumb: "../../png/tbth.png" }; bookmark[1][11] = { title: "美团网", url: "http://www.meituan.com", thumb: "../../png/meituan.png" }; bookmark[1][12] = { title: "苏宁易购", url: "http://www.suning.com", thumb: "../../png/suning.png" }; bookmark[1][13] = { title: "拍拍网", url: "http://www.paipai.com", thumb: "" }; bookmark[1][14] = { title: "聚划算精选", url: "http://ju.taobao.com", thumb: "" }; bookmark[1][15] = { title: "更多购物站", url: "#", thumb: "" }; bookmark[1][16] = { title: "易迅网", url: "http://www.yixun.com", thumb: "../../png/yixun.png" }; bookmark[1][17] = { title: "唯品会", url: "http://www.vip.com/", thumb: "../../png/wph.png" }; bookmark[2][0] = { title: "花瓣网", url: "http://huaban.com/", thumb: "../../png/huaban.png" }; bookmark[2][1] = { title: "豆瓣FM", url: "http://douban.fm/", thumb: "../../png/doubanfm.png" }; bookmark[2][2] = { title: "片刻Ting", url: "http://pianke.me/ting", thumb: "" }; bookmark[2][3] = { title: "音悦Tai", url: "http://www.yinyuetai.com/", thumb: "../../png/yinyuetai.png" }; bookmark[2][4] = { title: "网易公开课", url: "http://open.163.com/", thumb: "../../png/open163com.png" }; bookmark[2][5] = { title: "邻居的耳朵", url: "http://ear.duomi.com/", thumb: "../../png/kxt.png" }; bookmark[2][6] = { title: "engadget", url: "http://cn.engadget.com/", thumb: "../../png/engadget.png" }; bookmark[2][7] = { title: "Mtime时光网", url: "http://www.mtime.com/", thumb: "../../png/mtime.png" }; bookmark[2][8] = { title: "糗事百科", url: "http://www.qiushibaike.com/", thumb: "../../png/qiushibaike.png" }; bookmark[2][9] = { title: "TEDtoChina", url: "http://www.tedtochina.com/", thumb: "../../png/tedtochina.png" }; bookmark[2][10] = { title: "it.me", url: "http://topit.me/", thumb: "../../png/topit.png" }; bookmark[2][11] = { title: "V电影", url: "http://www.vmovier.com/", thumb: "../../png/vmovier.png" }; bookmark[2][12] = { title: "天猫电器城", url: "http://3c.tmall.com/", thumb: "" }; bookmark[2][13] = { title: "女人频道", url: "https://www.taobao.com/", thumb: "" }; bookmark[2][14] = { title: "天猫品牌特卖", url: "http://www.tmall.com", thumb: "" }; bookmark[2][15] = { title: "淘宝皇冠店", url: "https://www.taobao.com/", thumb: "" }; bookmark[3][0] = { title: "淘宝旅游", url: "https://www.alitrip.com", thumb: "../../png/taobaotrip.png" }; bookmark[3][1] = { title: "途牛旅游网", url: "http://www.tuniu.com/", thumb: "../../png/tuniu.png" }; bookmark[3][2] = { title: "穷游网", url: "http://www.qyer.com/", thumb: "../../png/qyer.png" }; bookmark[3][3] = { title: "Ulog旅游百科", url: "http://www.ulog.org/", thumb: "../../png/ulog.png" }; bookmark[3][4] = { title: "携程旅游网", url: "http://www.ctrip.com", thumb: "../../png/ctrip.png" }; bookmark[3][5] = { title: "去哪儿旅游", url: "http://www.qunar.com/", thumb: "../../png/qunar.png" }; bookmark[3][6] = { title: "艺龙旅行网", url: "http://www.elong.com", thumb: "../../png/elong.png" }; bookmark[3][7] = { title: "百度旅游", url: "http://lvyou.baidu.com/", thumb: "../../png/baidulvyou.png" }; bookmark[3][8] = { title: "春秋航空网", url: "http://www.ch.com/", thumb: "../../png/china-sss.png" }; bookmark[3][9] = { title: "同程网", url: "http://www.ly.com/", thumb: "../../png/17u.png" }; bookmark[3][10] = { title: "铁路客户服务中心", url: "http://www.12306.cn", thumb: "../../png/12306.png" }; bookmark[3][11] = { title: "驴评网", url: "http://www.lvping.com/", thumb: "../../png/lvping.png" }; bookmark[3][12] = { title: "母婴用品", url: "https://ju.taobao.com/", thumb: "" }; bookmark[3][13] = { title: "天猫电器城", url: "https://ju.taobao.com/", thumb: "" }; bookmark[3][14] = { title: "男人频道", url: "https://ju.taobao.com/", thumb: "../../png/nrpd.png" }; bookmark[3][15] = { title: "淘宝皇冠店", url: "https://ju.taobao.com/", thumb: "" }; bookmark[4][0] = { title: "聚划算", url: "https://ju.taobao.com/", thumb: "../../png/juhuasuan.png" }; bookmark[4][1] = { title: "百姓网", url: "http://www.baixing.com/", thumb: "../../png/baixing.png" }; bookmark[4][2] = { title: "口碑网", url: "http://www.koubei.com/", thumb: "../../png/koubei.png" }; bookmark[4][3] = { title: "豆果网", url: "http://www.douguo.com/", thumb: "../../png/douguo.png" }; bookmark[4][4] = { title: "58同城", url: "http://www.58.com/", thumb: "../../png/58.png" }; bookmark[4][5] = { title: "赶集网", url: "http://www.ganji.com", thumb: "../../png/ganji.png" }; bookmark[4][6] = { title: "下厨房", url: "http://www.xiachufang.com/", thumb: "../../png/xiachufang.png" }; bookmark[4][7] = { title: "团800", url: "http://www.tuan800.com/", thumb: "../../png/tuan800.png" }; bookmark[4][8] = { title: "中华英才网", url: "http://www.chinahr.com/", thumb: "../../png/chinahr.png" }; bookmark[4][9] = { title: "智联招聘", url: "http://www.zhaopin.com/", thumb: "../../png/zhaopin.png" }; bookmark[4][10] = { title: "爱帮网", url: "http://www.aibang.com/", thumb: "../../png/aibang.png" }; bookmark[4][11] = { title: "大众点评", url: "http://www.dianping.com", thumb: "../../png/dianping.png" }; bookmark[4][12] = { title: "支付宝", url: "https://www.alipay.com", thumb: "" }; bookmark[4][13] = { title: "世纪佳缘", url: "http://www.jiayuan.com/", thumb: "" }; bookmark[4][14] = { title: "人人网", url: "http://www.renren.com/", thumb: "" }; bookmark[4][15] = { title: "开心网", url: "http://www.kaixin001.com/", thumb: "" }; bookmark[5][0] = { title: "腾讯视频", url: "http://v.qq.com/", thumb: "" }; bookmark[5][1] = { title: "uusee网络电视", url: "http://www.uusee.com/", thumb: "../../png/uusee.png" }; bookmark[5][2] = { title: "56视频", url: "http://www.56.com/", thumb: "" }; bookmark[5][3] = { title: "电影天堂", url: "https://www.dytt8.net", thumb: "" }; bookmark[5][4] = { title: "爱奇艺", url: "http://www.iqiyi.com/", thumb: "../../png/iqiyi.png" }; bookmark[5][5] = { title: "迅雷看看", url: "http://www.kankan.com/", thumb: "../../png/xunlei.png" }; bookmark[5][6] = { title: "PPTV", url: "http://www.pptv.com/", thumb: "../../png/pptv.png" }; bookmark[5][7] = { title: "搜狐视频", url: "http://tv.sohu.com/", thumb: "../../png/sohutv.png" }; bookmark[5][8] = { title: "凤凰网视频", url: "http://phtv.ifeng.com/", thumb: "../../png/feng.png" }; bookmark[5][9] = { title: "乐视网", url: "http://www.letv.com/", thumb: "../../png/letv.png" }; bookmark[5][10] = { title: "音乐在线听", url: "http://www.kugou.com/", thumb: "" }; bookmark[5][11] = { title: "新浪视频", url: "http://video.sina.com.cn/", thumb: "../../png/logo-video.png" }; bookmark[5][12] = { title: "百度随心听", url: "http://fm.baidu.com/", thumb: "" }; bookmark[5][13] = { title: "动听FM", url: "http://fm.dongting.com/", thumb: "" }; bookmark[5][14] = { title: "HIT FM", url: "http://hitfm.cri.cn/", thumb: "" }; bookmark[5][15] = { title: "心理FM", url: "http://m.xinli001.com/fm/", thumb: "" }; bookmark[6][0] = { title: "站酷(ZCOOL)", url: "http://www.zcool.com.cn/", thumb: "../../png/zcool.png" }; bookmark[6][1] = { title: "素材天下", url: "http://sucaitianxia.com/", thumb: "../../png/sctx.png" }; bookmark[6][2] = { title: "CDchina", url: "http://www.ucdchina.com/", thumb: "../../png/ucdchina.png" }; bookmark[6][3] = { title: "红动中国", url: "http://www.redocn.com/", thumb: "../../png/redchina.png" }; bookmark[6][4] = { title: "中国设计网", url: "http://www.cndesign.com/", thumb: "../../png/zgsjw.png" }; bookmark[6][5] = { title: "昵图网", url: "http://www.nipic.com", thumb: "../../png/nipic.png" }; bookmark[6][6] = { title: "500px", url: "http://500px.com/", thumb: "../../png/500px.png" }; bookmark[6][7] = { title: "Rologo", url: "http://www.rologo.com/", thumb: "../../png/rologo.png" }; bookmark[6][8] = { title: "设计日报", url: "http://www.designdaily.cn/", thumb: "../../png/designdaily.png" }; bookmark[6][9] = { title: "猪八戒", url: "http://www.zhubajie.com", thumb: "../../png/zbj.png" }; bookmark[6][10] = { title: "Design lol", url: "http://designlol.net/", thumb: "../../png/designlol.png" }; bookmark[6][11] = { title: "视觉中国", url: "http://www.chinavisual.com/", thumb: "../../png/sjzg.png" }; bookmark[6][12] = { title: "母婴用品", url: "https://ju.taobao.com/", thumb: "" }; bookmark[6][13] = { title: "天猫电器城", url: "https://ju.taobao.com/", thumb: "" }; bookmark[6][14] = { title: "男人频道", url: "https://ju.taobao.com/", thumb: "../../png/nrpd.png" }; bookmark[6][15] = { title: "淘宝皇冠店", url: "https://ju.taobao.com/", thumb: "" }; bookmark[7][0] = { title: "知乎", url: "http://www.zhihu.com/", thumb: "../../png/zhihu.png" }; bookmark[7][1] = { title: "育儿网", url: "http://www.ci123.com/", thumb: "../../UploadFile/201511/20151123121939519.png" }; bookmark[7][2] = { title: "微盘", url: "http://vdisk.me/", thumb: "../../png/vdisk.png" }; bookmark[7][3] = { title: "Segmentfault", url: "http://segmentfault.com/", thumb: "../../png/segmentfault.png" }; bookmark[7][4] = { title: "新浪爱问", url: "http://iask.sina.com.cn/", thumb: "../../png/iask.png" }; bookmark[7][5] = { title: "众诚鹏企", url: "http://www.zcpq.cn", thumb: "../../UploadFile/201511/20151123121927671.png" }; bookmark[7][6] = { title: "优淘", url: "http://www.youtao.com/", thumb: "../../png/youtao.png" }; bookmark[7][7] = { title: "百度文库", url: "http://wenku.baidu.com/", thumb: "../../png/wenku.png" }; bookmark[7][8] = { title: "V2EX", url: "http://www.v2ex.com/", thumb: "../../png/v2ex.png" }; bookmark[7][9] = { title: "谷歌阅读", url: "https://www.google.com/reader/", thumb: "../../png/reader.png" }; bookmark[7][10] = { title: "中国搜索", url: "http://www.chinaso.com/", thumb: "../../UploadFile/201511/2015112312820488.png" }; bookmark[7][11] = { title: "佳品网", url: "http://www.jiapin.com/", thumb: "../../png/jiapin.png" }; bookmark[7][12] = { title: "新浪微博", url: "https://www.weibo.com", thumb: "" }; bookmark[7][13] = { title: "腾讯微博", url: "https://t.qq.com", thumb: "" }; bookmark[7][14] = { title: "烛光星空", url: "http://www.lovejia.cn", thumb: "" }; bookmark[7][15] = { title: "世导航微博", url: "https://t.4dh.cn/", thumb: "" }; bookmark[8][0] = { title: "蜻蜓fm", url: "http://www.qingting.fm", thumb: "" }; bookmark[8][1] = { title: "百度音乐", url: "http://fm.baidu.com/", thumb: "" }; bookmark[8][2] = { title: "阅读fm", url: "http://yuedu.fm/", thumb: "" }; bookmark[8][3] = { title: "360音乐", url: "http://music.haosou.com/", thumb: "" }; bookmark[8][4] = { title: "微电台", url: "http://radio.weibo.com/", thumb: "" }; bookmark[8][5] = { title: "酷我音乐", url: "http://kuwo.cn/", thumb: "../../UploadFile/201511/2015112312915668.png" }; bookmark[8][6] = { title: "豆瓣FM", url: "http://douban.fm/", thumb: "" }; bookmark[8][7] = { title: "QQ音乐", url: "http://y.qq.com", thumb: "../../UploadFile/201511/2015112312221535.png" }; bookmark[8][8] = { title: "心理FM", url: "http://m.xinli001.com/fm/", thumb: "" }; bookmark[8][9] = { title: "酷狗音乐", url: "http://www.kugou.com/", thumb: "../../UploadFile/201511/20151123121256115.png" }; bookmark[8][10] = { title: "一听音乐网", url: "https://www.1ting.com", thumb: "" }; bookmark[8][11] = { title: "片刻听", url: "http://pianke.me/ting", thumb: "" }; bookmark[8][12] = { title: "动听FM", url: "http://fm.dongting.com/", thumb: "" }; bookmark[8][13] = { title: "话匣子", url: "http://m.huaxiazi.com/book.aspx", thumb: "" }; bookmark[8][14] = { title: "虾米音乐", url: "http://www.xiami.com/", thumb: "../../UploadFile/201511/2015112312934533.png" }; bookmark[8][15] = { title: "贝瓦电台(儿童歌曲)", url: "http://app.beva.com/hao123/fm/index.html", thumb: "" }; bookmark[9][0] = { title: "ip138查询网", url: "http://www.ip138.com/", thumb: "" }; bookmark[9][1] = { title: "在线查询网", url: "http://www.supfree.net/", thumb: "../../UploadFile/201511/2015112312626180.png" }; bookmark[9][2] = { title: "快递查询大全", url: "http://www.ip138.com/ems/", thumb: "" }; bookmark[9][3] = { title: "站长工具", url: "http://tool.chinaz.com/", thumb: "" }; bookmark[9][4] = { title: "国内油价查询", url: "http://www.bitauto.com/youjia", thumb: "" }; bookmark[9][5] = { title: "全国车辆违章查询", url: "http://www.weizhang8.cn/", thumb: "" }; bookmark[9][6] = { title: "双色球", url: "http://www.zhcw.com/ssq/", thumb: "" }; bookmark[9][7] = { title: "航班查询", url: "http://flights.ctrip.com/schedule/", thumb: "" }; bookmark[9][8] = { title: "Whois查询", url: "http://whois.chinaz.com/", thumb: "" }; bookmark[9][9] = { title: "12306购票", url: "https://kyfw.12306.cn/otn/leftTicket/init", thumb: "" }; bookmark[9][10] = { title: "火车网", url: "http://www.huoche.net", thumb: "../../UploadFile/201511/2015112312735855.png" }; bookmark[9][11] = { title: "征信中心", url: "http://www.pbccrc.org.cn/", thumb: "../../UploadFile/201511/20151123121823259.png" }; bookmark[9][12] = { title: "学信网", url: "http://www.chsi.com.cn/", thumb: "" }; bookmark[9][13] = { title: "畅途网", url: "http://www.trip8080.com/", thumb: "../../UploadFile/201511/20151123121857301.png" }; bookmark[9][14] = { title: "公交车线路查询", url: "http://www.8684.cn/", thumb: "" }; bookmark[9][15] = { title: "全国企业信用信息公示系统", url: "http://gsxt.saic.gov.cn/", thumb: "" };