(function (a) { a.fn.hoverIntent = function (l, k) { var n = { sensitivity: 7, interval: 100, timeout: 0 }; n = a.extend(n, k ? { over: l, out: k} : l); var p, o, i, e; var h = function (f) { p = f.pageX; o = f.pageY }; var d = function (g, f) { f.hoverIntent_t = clearTimeout(f.hoverIntent_t); if ((Math.abs(i - p) + Math.abs(e - o)) < n.sensitivity) { a(f).unbind("mousemove", h); f.hoverIntent_s = 1; return n.over.apply(f, [g]) } else { i = p; e = o; f.hoverIntent_t = setTimeout(function () { d(g, f) }, n.interval) } }; var j = function (g, f) { f.hoverIntent_t = clearTimeout(f.hoverIntent_t); f.hoverIntent_s = 0; return n.out.apply(f, [g]) }; var c = function (r) { var q = (r.type == "mouseover" ? r.fromElement : r.toElement) || r.relatedTarget; while (q && q != this) { try { q = q.parentNode } catch (r) { q = this } } if (q == this) { return false } var g = jQuery.extend({}, r); var f = this; if (f.hoverIntent_t) { f.hoverIntent_t = clearTimeout(f.hoverIntent_t) } if (r.type == "mouseover") { i = g.pageX; e = g.pageY; a(f).bind("mousemove", h); if (f.hoverIntent_s != 1) { f.hoverIntent_t = setTimeout(function () { d(g, f) }, n.interval) } } else { a(f).unbind("mousemove", h); if (f.hoverIntent_s == 1) { f.hoverIntent_t = setTimeout(function () { j(g, f) }, n.timeout) } } }; return this.mouseover(c).mouseout(c) } })(jQuery); (function () { var k = jQuery, h = (k.fn.startAnimation ? "startAnimation" : "animate"), l = "pause plugin missing."; function j(a) { for (var c = 1; c < arguments.length; c++) { a = a.replace(new RegExp("\\{" + (c - 1) + "}", "g"), arguments[c]) } return a } function i() { arguments[0] = "CrossSlide: " + arguments[0]; throw new Error(j.apply(null, arguments)) } function g(c) { var e = 1; var d = c.replace(/^\s*|\s*$/g, "").split(/\s+/); if (d.length > 3) { throw new Error() } if (d[0] == "center") { if (d.length == 1) { d = ["center", "center"] } else { if (d.length == 2 && d[1].match(/^[\d.]+x$/i)) { d = ["center", "center", d[1]] } } } if (d.length == 3) { e = parseFloat(d[2].match(/^([\d.]+)x$/i)[1]) } var a = d[0] + " " + d[1]; if (a == "left top" || a == "top left") { return { xrel: 0, yrel: 0, zoom: e} } if (a == "left center" || a == "center left") { return { xrel: 0, yrel: 0.5, zoom: e} } if (a == "left bottom" || a == "bottom left") { return { xrel: 0, yrel: 1, zoom: e} } if (a == "center top" || a == "top center") { return { xrel: 0.5, yrel: 0, zoom: e} } if (a == "center center") { return { xrel: 0.5, yrel: 0.5, zoom: e} } if (a == "center bottom" || a == "bottom center") { return { xrel: 0.5, yrel: 1, zoom: e} } if (a == "right top" || a == "top right") { return { xrel: 1, yrel: 0, zoom: e} } if (a == "right center" || a == "center right") { return { xrel: 1, yrel: 0.5, zoom: e} } if (a == "right bottom" || a == "bottom right") { return { xrel: 1, yrel: 1, zoom: e} } return { xrel: parseInt(d[0].match(/^(\d+)%$/)[1]) / 100, yrel: parseInt(d[1].match(/^(\d+)%$/)[1]) / 100, zoom: e} } k.fn.crossSlide = function (e, c, a) { var n = this, d = this.width(), f = this.height(); if (n.length != 1) { i("crossSlide() must be called on exactly 1 element") } n.get(0).crossSlideArgs = [e, c, a]; c = k.map(c, function (o) { return k.extend({}, o) }); if (!e.easing) { e.easing = e.variant ? "swing" : "linear" } if (!a) { a = function () { } } (function (q) { var p = 0; function r(o, s) { s.onload = function (t) { p++; c[o].width = s.width; c[o].height = s.height; if (p == c.length) { q() } }; s.src = c[o].src; if (o + 1 < c.length) { r(o + 1, new Image()) } } r(0, new Image()) })(function () { if (!e.fade) { i("missing fade parameter.") } if (e.speed && e.sleep) { i("you cannot set both speed and sleep at the same time.") } var F = Math.round(e.fade * 1000); if (e.sleep) { var I = Math.round(e.sleep * 1000) } if (e.speed) { var E = e.speed / 1000, M = Math.round(F * E) } n.empty().css({ overflow: "hidden", padding: 0 }); if (!/^(absolute|relative|fixed)$/.test(n.css("position"))) { n.css({ position: "relative" }) } if (!n.width() || !n.height()) { i("container element does not have its own width and height") } if (e.shuffle) { c.sort(function () { return Math.random() - 0.5 }) } for (var O = 0; O < c.length; ++O) { var H = c[O]; if (!H.src) { i("missing src parameter in picture {0}.", O + 1) } if (E) { switch (H.dir) { case "up": H.from = { xrel: 0.5, yrel: 0, zoom: 1 }; H.to = { xrel: 0.5, yrel: 1, zoom: 1 }; var K = H.height - f - 2 * M; break; case "down": H.from = { xrel: 0.5, yrel: 1, zoom: 1 }; H.to = { xrel: 0.5, yrel: 0, zoom: 1 }; var K = H.height - f - 2 * M; break; case "left": H.from = { xrel: 0, yrel: 0.5, zoom: 1 }; H.to = { xrel: 1, yrel: 0.5, zoom: 1 }; var K = H.width - d - 2 * M; break; case "right": H.from = { xrel: 1, yrel: 0.5, zoom: 1 }; H.to = { xrel: 0, yrel: 0.5, zoom: 1 }; var K = H.width - d - 2 * M; break; default: i("missing or malformed dir parameter in picture {0}.", O + 1) } if (K <= 0) { i("impossible animation: either picture {0} is too small or div is too large or fade duration too long.", O + 1) } H.time_ms = Math.round(K / E) } else { if (!I) { if (!H.from || !H.to || !H.time) { i("missing either speed/sleep option, or from/to/time params in picture {0}.", O + 1) } try { H.from = g(H.from) } catch (L) { i('malformed "from" parameter in picture {0}.', O + 1) } try { H.to = g(H.to) } catch (L) { i('malformed "to" parameter in picture {0}.', O + 1) } if (!H.time) { i('missing "time" parameter in picture {0}.', O + 1) } H.time_ms = Math.round(H.time * 1000) } } if (H.from) { k.each([H.from, H.to], function (o, q) { q.width = Math.round(H.width * q.zoom); q.height = Math.round(H.height * q.zoom); q.left = Math.round((d - q.width) * q.xrel); q.top = Math.round((f - q.height) * q.yrel) }) } var P, J; J = P = k(j('<img src="{0}"/>', H.src)); if (H.href) { J = k(j('<a href="{0}"></a>', H.href)).append(P) } if (H.onclick) { J.click(H.onclick) } if (H.alt) { P.attr("alt", H.alt) } if (H.href && H.target) { J.attr("target", H.target) } J.appendTo(n) } delete E; function G(q, r) { var o = [0, F / (q.time_ms + 2 * F), 1 - F / (q.time_ms + 2 * F), 1][r]; return { left: Math.round(q.from.left + o * (q.to.left - q.from.left)), top: Math.round(q.from.top + o * (q.to.top - q.from.top)), width: Math.round(q.from.width + o * (q.to.width - q.from.width)), height: Math.round(q.from.height + o * (q.to.height - q.from.height))} } var N = n.find("img").css({ position: "absolute", visibility: "hidden", top: 0, left: 0, border: 0 }); N.eq(0).css({ visibility: "visible" }); if (!I) { N.eq(0).css(G(c[0], e.variant ? 0 : 1)) } var D = e.loop; function C(u, Z) { if (u % 2 == 0) { if (I) { var W = u / 2, q = (W - 1 + c.length) % c.length, t = N.eq(W), w = N.eq(q); var x = function () { a(W, t.get(0)); w.css("visibility", "hidden"); setTimeout(Z, I) } } else { var B = u / 2, q = (B - 1 + c.length) % c.length, r = N.eq(B), w = N.eq(q), V = c[B].time_ms, v = G(c[B], e.variant ? 3 : 2); var x = function () { a(B, r.get(0)); w.css("visibility", "hidden"); r[h](v, V, e.easing, Z) } } } else { var X = Math.floor(u / 2), U = Math.ceil(u / 2) % c.length, s = N.eq(X), Y = N.eq(U), o = {}, y = { visibility: "visible" }, z = {}; if (U > X) { y.opacity = 0; z.opacity = 1; if (e.doubleFade) { o.opacity = 0 } } else { o.opacity = 0; if (e.doubleFade) { y.opacity = 0; z.opacity = 1 } } if (!I) { k.extend(y, G(c[U], 0)); if (!e.variant) { k.extend(o, G(c[X], 3)); k.extend(z, G(c[U], 1)) } } if (k.isEmptyObject(z)) { var x = function () { a(U, Y.get(0), X, s.get(0)); Y.css(y); s[h](o, F, "linear", Z) } } else { if (k.isEmptyObject(o)) { var x = function () { a(U, Y.get(0), X, s.get(0)); Y.css(y); Y[h](z, F, "linear", Z) } } else { var x = function () { a(U, Y.get(0), X, s.get(0)); Y.css(y); Y[h](z, F, "linear"); s[h](o, F, "linear", Z) } } } } if (e.loop && u == c.length * 2 - 2) { var A = x; x = function () { if (--D) { A() } } } if (u > 0) { return C(u - 1, x) } else { return x } } var p = C(c.length * 2 - 1, function () { return p() }); p() }); return n }; k.fn.crossSlideFreeze = function () { this.find("img").stop() }; k.fn.crossSlideStop = function () { this.find("img").stop().remove() }; k.fn.crossSlideRestart = function () { this.find("img").stop().remove(); k.fn.crossSlide.apply(this, this.get(0).crossSlideArgs) }; k.fn.crossSlidePause = function () { if (!k.fn.pause) { i(l) } this.find("img").pause() }; k.fn.crossSlideResume = function () { if (!k.fn.pause) { i(l) } this.find("img").resume() } })(); (function (a) { format = function () { a(".h1_div").corner(); a(".root_top_buttons").corner("top").parent().css("padding-top", "2px").corner("top"); a(".root_top_selected_buttons").corner("top").parent().css("padding-top", "2px").corner("top"); a(".root_inner_container").corner(); a(".root_middle_container").corner("15px top"); a(".phone_outer").corner(); a(".phone").corner(); a(".accolade_top").corner("left"); a(".contactus_button").corner(); a(".twitter_button").corner(); a(".blog_button").corner(); a(".facebook_button").corner(); a(".social_media").corner(); a(".about_button").corner(); a(".content_outer_body").corner("10px bl").corner("10px tl").corner("10px right"); a(".content_body").corner("10px bl").corner("10px tl").corner("10px right"); a(".verbiage").corner(); a(".catalog_item_container").corner(); a(".lower_right_verbiage").corner(); a(".lower_left_verbiage").corner(); a(".lower_center_verbiage").corner(); a(".help_verbiage").corner(); a(".catalog_item_photo").hoverIntent(function () { a(this).css({ "z-index": "10" }); a(this).find("img").stop().animate({ marginTop: "-110px", marginLeft: "0", top: "0", left: "0", width: "175px", height: "175px" }, 200) }, function () { a(this).css({ "z-index": "0" }); a(this).find("img").stop().animate({ marginTop: "4", marginLeft: "0", top: "0", left: "0", width: "100px", height: "100px" }, 400) }); a(".catalog_item_photo_half").hoverIntent(function () { a(this).css({ "z-index": "10" }); a(this).find("img").stop().animate({ marginTop: "-110px", marginLeft: "0px", top: "0", left: "0", width: "175px", height: "175px" }, 200) }, function () { a(this).css({ "z-index": "0" }); a(this).find("img").stop().animate({ marginTop: "0", marginLeft: "0", top: "1", left: "0", width: "50px", height: "50px" }, 400) }) } })(jQuery); $.extend({ URLEncode: function (k) { var j = ""; var e = 0; k = k.toString(); var g = /(^[a-zA-Z0-9_.]*)/; while (e < k.length) { var a = g.exec(k.substr(e)); if (a != null && a.length > 1 && a[1] != "") { j += a[1]; e += a[1].length } else { if (k[e] == " ") { j += "+" } else { var i = k.charCodeAt(e); var f = i.toString(16); j += "%" + (f.length < 2 ? "0" : "") + f.toUpperCase() } e++ } } return j }, URLDecode: function (d) { var f = d; var a, c; var e = /(%[^%]{2})/; while ((m = e.exec(f)) != null && m.length > 1 && m[1] != "") { b = parseInt(m[1].substr(1), 16); c = String.fromCharCode(b); f = f.replace(m[1], c) } return f } });
(function (d) { var a = document.createElement("div").style; var i = a.MozBorderRadius !== undefined; var k = a.WebkitBorderRadius !== undefined; var f = a.borderRadius !== undefined || a.BorderRadius !== undefined; var e = document.documentMode || 0; var n = d.browser.msie && ((d.browser.version < 8 && !e) || e < 8); var j = d.browser.msie && (function () { var p = document.createElement("div"); try { p.style.setExpression("width", "0+0"); p.style.removeExpression("width") } catch (o) { return false } return true })(); function h(o, q) { return parseInt(d.css(o, q)) || 0 } function l(o) { o = parseInt(o).toString(16); return (o.length < 2) ? "0" + o : o } function c(q) { while (q) { var o = d.css(q, "backgroundColor"); if (o && o != "transparent" && o != "rgba(0, 0, 0, 0)") { if (o.indexOf("rgb") >= 0) { var p = o.match(/\d+/g); return "#" + l(p[0]) + l(p[1]) + l(p[2]) } return o } q = q.parentNode } return "#ffffff" } function g(q, o, p) { switch (q) { case "round": return Math.round(p * (1 - Math.cos(Math.asin(o / p)))); case "cool": return Math.round(p * (1 + Math.cos(Math.asin(o / p)))); case "sharp": return Math.round(p * (1 - Math.cos(Math.acos(o / p)))); case "bite": return Math.round(p * (Math.cos(Math.asin((p - o - 1) / p)))); case "slide": return Math.round(p * (Math.atan2(o, p / o))); case "jut": return Math.round(p * (Math.atan2(p, (p - o - 1)))); case "curl": return Math.round(p * (Math.atan(o))); case "tear": return Math.round(p * (Math.cos(o))); case "wicked": return Math.round(p * (Math.tan(o))); case "long": return Math.round(p * (Math.sqrt(o))); case "sculpt": return Math.round(p * (Math.log((p - o - 1), p))); case "dogfold": case "dog": return (o & 1) ? (o + 1) : p; case "dog2": return (o & 2) ? (o + 1) : p; case "dog3": return (o & 3) ? (o + 1) : p; case "fray": return (o % 2) * p; case "notch": return p; case "bevelfold": case "bevel": return o + 1 } } d.fn.corner = function (o) { if (this.length == 0) { if (!d.isReady && this.selector) { var p = this.selector, q = this.context; d(function () { d(p, q).corner(o) }) } return this } return this.each(function (y) { var x = d(this); var F = [x.attr(d.fn.corner.defaults.metaAttr) || "", o || ""].join(" ").toLowerCase(); var M = /keep/.test(F); var E = ((F.match(/cc:(#[0-9a-f]+)/) || [])[1]); var r = ((F.match(/sc:(#[0-9a-f]+)/) || [])[1]); var I = parseInt((F.match(/(\d+)px/) || [])[1]) || 10; var G = /round|bevelfold|bevel|notch|bite|cool|sharp|slide|jut|curl|tear|fray|wicked|sculpt|long|dog3|dog2|dogfold|dog/; var t = ((F.match(G) || ["round"])[0]); var u = /dogfold|bevelfold/.test(F); var s = { T: 0, B: 1 }; var B = { TL: /top|tl|left/.test(F), TR: /top|tr|right/.test(F), BL: /bottom|bl|left/.test(F), BR: /bottom|br|right/.test(F) }; if (!B.TL && !B.TR && !B.BL && !B.BR) { B = { TL: 1, TR: 1, BL: 1, BR: 1} } if (d.fn.corner.defaults.useNative && t == "round" && (f || i || k) && !E && !r) { if (B.TL) { x.css(f ? "border-top-left-radius" : i ? "-moz-border-radius-topleft" : "-webkit-border-top-left-radius", I + "px") } if (B.TR) { x.css(f ? "border-top-right-radius" : i ? "-moz-border-radius-topright" : "-webkit-border-top-right-radius", I + "px") } if (B.BL) { x.css(f ? "border-bottom-left-radius" : i ? "-moz-border-radius-bottomleft" : "-webkit-border-bottom-left-radius", I + "px") } if (B.BR) { x.css(f ? "border-bottom-right-radius" : i ? "-moz-border-radius-bottomright" : "-webkit-border-bottom-right-radius", I + "px") } return } var J = document.createElement("div"); d(J).css({ overflow: "hidden", height: "1px", minHeight: "1px", fontSize: "1px", backgroundColor: r || "transparent", borderStyle: "solid" }); var P = { T: parseInt(d.css(this, "paddingTop")) || 0, R: parseInt(d.css(this, "paddingRight")) || 0, B: parseInt(d.css(this, "paddingBottom")) || 0, L: parseInt(d.css(this, "paddingLeft")) || 0 }; if (typeof this.style.zoom != undefined) { this.style.zoom = 1 } if (!M) { this.style.border = "none" } J.style.borderColor = E || c(this.parentNode); var H = d(this).outerHeight(); for (var K in s) { var A = s[K]; if ((A && (B.BL || B.BR)) || (!A && (B.TL || B.TR))) { J.style.borderStyle = "none " + (B[K + "R"] ? "solid" : "none") + " none " + (B[K + "L"] ? "solid" : "none"); var Q = document.createElement("div"); d(Q).addClass("jquery-corner"); var D = Q.style; A ? this.appendChild(Q) : this.insertBefore(Q, this.firstChild); if (A && H != "auto") { if (d.css(this, "position") == "static") { this.style.position = "relative" } D.position = "absolute"; D.bottom = D.left = D.padding = D.margin = "0"; if (j) { D.setExpression("width", "this.parentNode.offsetWidth") } else { D.width = "100%" } } else { if (!A && d.browser.msie) { if (d.css(this, "position") == "static") { this.style.position = "relative" } D.position = "absolute"; D.top = D.left = D.right = D.padding = D.margin = "0"; if (j) { var N = h(this, "borderLeftWidth") + h(this, "borderRightWidth"); D.setExpression("width", "this.parentNode.offsetWidth - " + N + '+ "px"') } else { D.width = "100%" } } else { D.position = "relative"; D.margin = !A ? "-" + P.T + "px -" + P.R + "px " + (P.T - I) + "px -" + P.L + "px" : (P.B - I) + "px -" + P.R + "px -" + P.B + "px -" + P.L + "px" } } for (var L = 0; L < I; L++) { var z = Math.max(0, g(t, L, I)); var O = J.cloneNode(false); O.style.borderWidth = "0 " + (B[K + "R"] ? z : 0) + "px 0 " + (B[K + "L"] ? z : 0) + "px"; A ? Q.appendChild(O) : Q.insertBefore(O, Q.firstChild) } if (u && d.support.boxModel) { if (A && n) { continue } for (var R in B) { if (!B[R]) { continue } if (A && (R == "TL" || R == "TR")) { continue } if (!A && (R == "BL" || R == "BR")) { continue } var C = { position: "absolute", border: "none", margin: 0, padding: 0, overflow: "hidden", backgroundColor: J.style.borderColor }; var v = d("<div/>").css(C).css({ width: I + "px", height: "1px" }); switch (R) { case "TL": v.css({ bottom: 0, left: 0 }); break; case "TR": v.css({ bottom: 0, right: 0 }); break; case "BL": v.css({ top: 0, left: 0 }); break; case "BR": v.css({ top: 0, right: 0 }); break } Q.appendChild(v[0]); var S = d("<div/>").css(C).css({ top: 0, bottom: 0, width: "1px", height: I + "px" }); switch (R) { case "TL": S.css({ left: I }); break; case "TR": S.css({ right: I }); break; case "BL": S.css({ left: I }); break; case "BR": S.css({ right: I }); break } Q.appendChild(S[0]) } } } } }) }; d.fn.uncorner = function () { if (f || i || k) { this.css(f ? "border-radius" : i ? "-moz-border-radius" : "-webkit-border-radius", 0) } d("div.jquery-corner", this).remove(); return this }; d.fn.corner.defaults = { useNative: true, metaAttr: "data-corner"} })(jQuery); (function (c) { format = function () { c(".h1_div").corner(); c(".root_top_buttons").corner("top").parent().css("padding-top", "2px").corner("top"); c(".root_top_selected_buttons").corner("top").parent().css("padding-top", "2px").corner("top"); c(".root_inner_container").corner(); c(".root_middle_container").corner("15px top"); c(".phone_outer").corner(); c(".phone").corner(); c(".accolade_top").corner("left"); c(".contactus_button").corner(); c(".twitter_button").corner(); c(".blog_button").corner(); c(".facebook_button").corner(); c(".social_media").corner(); c(".about_button").corner(); c(".content_outer_body").corner("10px bl").corner("10px tl").corner("10px right"); c(".content_body").corner("10px bl").corner("10px tl").corner("10px right"); c(".verbiage").corner(); c(".catalog_item_container").corner(); c(".lower_right_verbiage").corner(); c(".lower_left_verbiage").corner(); c(".lower_center_verbiage").corner(); c(".help_verbiage").corner(); c(".catalog_item_photo").hoverIntent(function () { c(this).css({ "z-index": "10" }); c(this).find("img").stop().animate({ marginTop: "-110px", marginLeft: "0", top: "0", left: "0", width: "175px", height: "175px" }, 200) }, function () { c(this).css({ "z-index": "0" }); c(this).find("img").stop().animate({ marginTop: "4", marginLeft: "0", top: "0", left: "0", width: "100px", height: "100px" }, 400) }); c(".catalog_item_photo_half").hoverIntent(function () { c(this).css({ "z-index": "10" }); c(this).find("img").stop().animate({ marginTop: "-110px", marginLeft: "0px", top: "0", left: "0", width: "175px", height: "175px" }, 200) }, function () { c(this).css({ "z-index": "0" }); c(this).find("img").stop().animate({ marginTop: "0", marginLeft: "0", top: "1", left: "0", width: "50px", height: "50px" }, 400) }) } })(jQuery); $.extend({ URLEncode: function (k) { var j = ""; var e = 0; k = k.toString(); var g = /(^[a-zA-Z0-9_.]*)/; while (e < k.length) { var a = g.exec(k.substr(e)); if (a != null && a.length > 1 && a[1] != "") { j += a[1]; e += a[1].length } else { if (k[e] == " ") { j += "+" } else { var i = k.charCodeAt(e); var f = i.toString(16); j += "%" + (f.length < 2 ? "0" : "") + f.toUpperCase() } e++ } } return j }, URLDecode: function (d) { var f = d; var a, c; var e = /(%[^%]{2})/; while ((m = e.exec(f)) != null && m.length > 1 && m[1] != "") { b = parseInt(m[1].substr(1), 16); c = String.fromCharCode(b); f = f.replace(m[1], c) } return f } });
(function () {var f = document.getElementById('cse-search-box');if (!f) {f = document.getElementById('searchbox_demo');}if (f && f.q) {var q = f.q;var n = navigator;var l = location;var su = function () {var u = document.createElement('input');var v = document.location.toString();var existingSiteurl = /(?:[?&]siteurl=)([^&#]*)/.exec(v);if (existingSiteurl) {v = decodeURI(existingSiteurl[1]);}var delimIndex = v.indexOf('://');if (delimIndex >= 0) { v = v.substring(delimIndex + '://'.length, v.length);}u.name = 'siteurl';u.value = v;u.type = 'hidden';f.appendChild(u);};if (n.appName == 'Microsoft Internet Explorer') {var s = f.parentNode.childNodes;for (var i = 0; i < s.length; i++) {if (s[i].nodeName == 'SCRIPT' && s[i].attributes['src'] && s[i].attributes['src'].nodeValue == unescape('http:\x2F\x2Fwww.google.com\x2Fcse\x2Fbrand?form=cse-search-box\x26lang=en\x26sitesearch=true')) {su();break;}}} else{su();} if (n.platform == 'Win32') {q.style.cssText = 'border: 1px solid #7e9db9; padding: 2px;';} if (window.history.navigationMode) {window.history.navigationMode = 'compatible';} var b = function () {if (q.value == '') {q.style.background = '#FFFFFF url(http:\x2F\x2Fwww.google.com\x2Fcse\x2Fintl\x2Fen\x2Fimages\x2Fgoogle_site_search_watermark.gif) left no-repeat';}}; var f = function () {q.style.background = '#ffffff';};q.onfocus = f;q.onblur = b;if (!/[&?]q=[^&]/.test(l.search)) {b();}}})();

