(function() {
  var globalVar = "fx360_latestNews";
  window[globalVar] = {};
  var myWin = window[globalVar];
  var server = "http://www.fx360.com";
  myWin.f = function() {
      return {
          runFunction: [],
          init: function(target) {

              var tags = document.getElementsByTagName('SCRIPT');

              for (var i = 0; i < tags.length; i++) {
                  if (tags[i].src.match(target)) {
                      myWin.a = {};
                      if (tags[i].innerHTML) { myWin.a = myWin.f.parseJson(tags[i].innerHTML); }
                      myWin.w = document.createElement('DIV');
                      tags[i].parentNode.insertBefore(myWin.w, tags[i]);
                      tags[i].parentNode.removeChild(tags[i]);
                      myWin.f.build();
                      break;
                  }
              }
          },
          parseJson: function(json) {
              this.parseJson.data = json;
              if (typeof json !== 'string')
                  return { "err": "json object isn't a string" };
              try {
                  var f = Function(["var document,top,self,window,parent,Number,Data,Object,Function,",
                      "Array,String,Math,RegExp,Image,ActiveXObject;",
                      "return (", json.replace(/<\!--.+-->/gim, '').replace(/function/g, 'function'), ");"].join(""));
                  return f();
              } catch (ex) {
                  return { "err": "error parsing JSON object" };
              }
          },
          insertCSS: function(rules) {
              var ns = document.createElement('style');
              document.getElementsByTagName('head')[0].appendChild(ns);
              if (!window.createPopup) {
                  ns.appendChild(document.createTextNode(""));
                  ns.setAttribute('type', 'text/css');
              }
              var s = document.styleSheets[document.styleSheets.length - 1];
              var ieRules = "";
              for (var r in rules) {
                  var selector = '#fx360Feed-' + globalVar + ' ' + r;
                  if (!window.createPopup) {
                      var rule = document.createTextNode(selector + rules[r]);
                      ns.appendChild(rule);
                  } else {
                      ieRules += selector + ' ' + rules[r];
                  }
              }
              if (window.createPopup)
                  s.cssText = ieRules;
          },
          build: function() {

              myWin.d = {
                  'width': '170px',
                  'height': 'auto',
                  'imgUrl': server + '/images',
                  'outterColor': '#eee',
                  'outterBorder': '1px solid #cfcfcf',
                  'showTime': true,
                  'showDesc': true,
                  'showCats': false,
                  'stories': 3,
                  'showKathy': true,
                  'showBoris': true,
                  'showTech': true
          };
          for (var k in myWin.d)
              if (myWin.a[k] === undefined)
              myWin.a[k] = myWin.d[k];
          myWin.a['imgUrl'] = myWin.d['imgUrl'];
          myWin.w.className = globalVar;
          myWin.w.id = 'fx360Feed-' + globalVar;
          myWin.w.style.display = 'none';
          if (myWin.a.width !== undefined) {
              try {
                  if (/^\s*\d+\s*myWin/.test(myWin.a.width)) { myWin.a.width += "px"; }
                 myWin.w.style.width = myWin.a.width;
              } catch (eWidth) { } 
          }
          if (myWin.a.height !== undefined && myWin.a.height != 'auto') {
              try {
                  if (/^\s*\d+\s*myWin/.test(myWin.a.height)) { myWin.a.height += "px"; }
                  myWin.w.style.height = myWin.a.height;
              } catch (eHeight) { } 
          }

          var rules = {
              "": "{ zoom: 1; text-align: left; background: " + myWin.a.outterColor + "; padding: 4px; }",
              "*": "{ font:normal 12px arial; line-height:14px; margin:0; padding:0; }",
              "a": "{ cursor:pointer; text-decoration:none; color: #004276; }",
              "a:hover": "{ color: #000; }",
              ".fx360": "{ border:" + myWin.a.outterBorder + "; padding:0; background: #e6e3dc; }",
              ".fx360b": "{ font-weight: bold; }",
              ".fx360h": "{ display: block; height: 60px; background: url(" + myWin.a.imgUrl + "/fx360Bg_for_widget.jpg) repeat-x 0 0; }",
              ".fx360t": "{ display: block; height: 60px; background: url(" + myWin.a.imgUrl + "/fx360_widgetTop.jpg) no-repeat 0 0; }",
              ".fx360t:hover": "{ display: block; height: 60px; background: url(" + myWin.a.imgUrl + "/fx360_widgetTop.jpg) no-repeat 0 0; }",
              ".fx360t span": "{ visibility: hidden; }",
              "#fx360-stories": "{ list-style: none; margin: 3px 10px; }",
              ".fx360-st": "{ margin: 0 0 10px; padding: 0 0 10px; background-image: none; }",
              ".fx360-st .h3 a": "{ font:bold 16px Georgia,serif; line-height: 20px; text-decoration: none; }",
              ".fx360-st .h3 a:hover": "{ text-decoration: underline; }",
              ".fx360-st .fx360-stmeta": "{ color: #8e8c8a; font-size: 11px; display: block; margin: 3px 0; }",
              ".fx360-st .fx360-stmeta a:hover": "{ text-decoration: underline; }",
              ".fx360-st .fx360-stdesc": "{ margin: 3px 0 0; line-height: 16px; font-size: 12px; }",
              ".fx360-foot": "{ margin: 0 0 10px; font-size: 9px; }",
              ".fx360-foot a": "{ color: #004276; text-decoration: none; }",
              ".fx360-foot a:hover": "{ text-decoration: underline; }",
              ".fx360-foot a em": "{ color: #004276; text-decoration: none;}",
              ".fx360-foot a:hover em": "{ text-decoration: underline; }",
              ".getIt-foot": "{ margin: 4px 0; }",
              ".getIt-foot a": "{ padding: 0 10px; text-transform: uppercase; font-size: 9px; color: #004276; }",
              ".getIt-foot a:hover": "{ text-decoration: underline; }"
          };

          this.insertCSS(rules);
          myWin.w.c = document.createElement('DIV');
          myWin.w.c.className = 'fx360';
          myWin.w.appendChild(myWin.w.c);
          myWin.w.h = document.createElement('DIV');
          myWin.w.h.className = 'fx360h';
          myWin.w.c.appendChild(myWin.w.h);
          myWin.w.ha = document.createElement('A');
          myWin.w.ha.className = 'fx360t';
          myWin.w.ha.target = '_blank';
          myWin.w.ha.href = 'http://www.fx360.com';
          myWin.w.h.appendChild(myWin.w.ha);
          myWin.w.ht = document.createElement('SPAN');
          myWin.w.ht.innerHTML = 'fx360.com';
          myWin.w.ha.appendChild(myWin.w.ht);
          myWin.w.b = document.createElement('DIV');
          myWin.w.b.className = 'fx360b';
          myWin.w.c.appendChild(myWin.w.b);
          myWin.w.st = myWin.m.render();
          if (myWin.w.st != null) {
              myWin.w.b.appendChild(myWin.w.st);
          } else {
              myWin.w.st = document.createElement('UL');
              myWin.w.st.id = 'fx360-stories';
              myWin.w.b.appendChild(myWin.w.st);
          }
          myWin.w.stf = document.createElement('LI');
          myWin.w.stf.className = 'fx360-foot';
          myWin.w.st.appendChild(myWin.w.stf);
          myWin.w.stfw = document.createElement('DIV');
          myWin.w.stfw.innerHTML = "More news on ";
          myWin.w.stf.appendChild(myWin.w.stfw);
          myWin.w.stfa = document.createElement('A');
          myWin.w.stfa.innerHTML = 'fx360.com';
          myWin.w.stfa.target = '_blank';
          myWin.w.stfa.href = 'http://www.fx360.com';
          myWin.w.stfw.appendChild(myWin.w.stfa);
          myWin.w.f = document.createElement('DIV');
          myWin.w.f.className = 'getIt-foot';
          myWin.w.appendChild(myWin.w.f);
          myWin.w.fa = document.createElement('A');
          myWin.w.fa.target = '_blank';
          myWin.w.fa.href = server + '/widgets/Index.aspx';
          myWin.w.fa.innerHTML = 'Get this Widget &gt;';
          myWin.w.f.appendChild(myWin.w.fa);
          myWin.w.style.display = 'block';


          }
      }
  } ();

  myWin.m = {
      render: function() {

          if (this.data.length == 0)
              return null;

          var st = document.createElement('UL');
          st.id = 'fx360-stories';

          var authorData = new Array;
          for (var i = 0; i < this.data.length; i++) {
              if (myWin.a.showKathy && this.data[i].author == 'kathy') authorData.push(this.data[i]);
              if (myWin.a.showBoris && this.data[i].author == 'boris') authorData.push(this.data[i]);
              if (myWin.a.showTech && this.data[i].author == 'tech') authorData.push(this.data[i]);
          }

          for (var i = 0; i < myWin.a.stories; i++) {
              var story = authorData[i];
              if (!story['title'] || !story['link']) { continue; }
              var s = document.createElement('LI');
              s.className = 'fx360-st';
              var tdiv = document.createElement('DIV');
              tdiv.className = 'h3';
              var t = document.createElement('A');
              t.innerHTML = story['title'];
              t.target = '_blank';
              t.href = story['link'];
              tdiv.appendChild(t);
              s.appendChild(tdiv);
              if (myWin.a.showTime) {
                  var time = document.createElement('SPAN');
                  time.className = 'fx360-stmeta';
                  time.innerHTML = story['time'];
                  if (myWin.a.showCats && story['cats'])
                      time.innerHTML += ' in ' + story['cats'];
                  s.appendChild(time);
              }
              if (myWin.a.showDesc) {
                  var desc = document.createElement('DIV');
                  desc.className = 'fx360-stdesc';
                  desc.innerHTML = story['desc'];
                  s.appendChild(desc);
              }
              st.appendChild(s);
          }

          return st;
      },
       data: [{ "author": "tech",
              "title": "Bonus NZD/USD Trade; Buy at 0.6912",
              "desc": "A bullish Gartley pattern is emerging on the NZD USD....",
              "time": "7 hours, 1 minutes ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/508\/buy.aspx\">buy</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/411\/chart.aspx\">chart</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/893\/enter.aspx\">enter</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1118\/hr.aspx\">hr</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/443\/nzd.aspx\">nzd</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/228\/pair.aspx\">pair</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/465\/point.aspx\">point</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/178\/usd.aspx\">usd</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1365\/yz.aspx\">yz</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/brad\/2991\/bonus-nzdusd-trade-buy-at-0-6912.aspx" },
              { "author": "kathy",
              "title": "Why Dollar Bulls Shrugged Off Retail Sales",
              "desc": "Based upon the price action in the financial markets on Friday  the U.S. retail sales report failed to impress traders and investors.  There was no ambiguity in the strength of the consumer spending report yet equities and bonds ended the...",
              "time": "9 hours ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/174\/dollar.aspx\">dollar</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/204\/fed.aspx\">fed</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/187\/jpy.aspx\">jpy</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1091\/nbsp.aspx\">nbsp</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/180\/next.aspx\">next</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/254\/report.aspx\">report</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/534\/retail.aspx\">retail</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/179\/sales.aspx\">sales</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/521\/short.aspx\">short</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/178\/usd.aspx\">usd</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/kathy\/2990\/why-dollar-bulls-shrugged-off-retail-sales.aspx" },
              { "author": "tech",
              "title": "Short-Term EUR/GBP Buy Emerging",
              "desc": "An emerging bullish Gartley pattern  beginning at X1  points to a......",
              "time": "14 hours ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/374\/bullish.aspx\">bullish</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1561\/gartley butterfly.aspx\">gartley butterfly</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/362\/pattern.aspx\">pattern</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/roger\/2988\/short-term-eurgbp-buy-emerging.aspx" },
              { "author": "kathy",
              "title": "Dollar: Retail Sales Pave Way for More Optimism from Fed",
              "desc": "Stronger U.S. retail sales numbers helped to drive the dollar higher against all of the major currencies....",
              "time": "17 hours, 1 minutes ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1560\/us dollar retail sales.aspx\">us dollar retail sales</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/kathy\/2982\/dollar-retail-sales-pave-way-for-more-optimism-from-fed.aspx" },
              { "author": "boris",
              "title": "Euro Squeezed Higher as Concerns Over Greece Abate",
              "desc": "Euro continued its short covering rally into the weekend  clearing the key 1.3740 level after several European officials lent their support to the creation of a European Monetary Fund that would be able to deal more effectively with future funding crises...",
              "time": "20 hours, 1 minutes ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/201\/eur.aspx\">eur</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/224\/euro.aspx\">euro</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/780\/industrial.aspx\">industrial</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/973\/production.aspx\">production</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/534\/retail.aspx\">retail</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/179\/sales.aspx\">sales</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/521\/short.aspx\">short</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/178\/usd.aspx\">usd</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/boris\/2948\/euro-squeezed-higher-as-concerns-over-greece-abate.aspx" },
              { "author": "tech",
              "title": "GBP/JPY Short Opportunity at 139.27",
              "desc": "A bearish Gartley pattern is forming on the GBP JPY....",
              "time": "1 days ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/426\/bearish.aspx\">bearish</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/680\/cd.aspx\">cd</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/411\/chart.aspx\">chart</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/371\/daily.aspx\">daily</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/893\/enter.aspx\">enter</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/466\/entry.aspx\">entry</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/349\/fibonacci.aspx\">fibonacci</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/363\/gbp.aspx\">gbp</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/528\/retracement.aspx\">retracement</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/brad\/2980\/gbpjpy-short-opportunity-at-139-27.aspx" },
              { "author": "kathy",
              "title": "Dollar: Retail Sales Could Trigger Breakouts",
              "desc": "It has been an extremely quiet day in the foreign exchange market with currency pairs such as the EUR USD and USD JPY confined within a 50 pip trading range.  This contraction in volatility has been occurring in the EUR USD for the...",
              "time": "1 days ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/219\/bank.aspx\">bank</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/196\/consumer.aspx\">consumer</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/201\/eur.aspx\">eur</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/320\/inflation.aspx\">inflation</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1091\/nbsp.aspx\">nbsp</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/702\/numbers.aspx\">numbers</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/254\/report.aspx\">report</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/534\/retail.aspx\">retail</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/179\/sales.aspx\">sales</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/178\/usd.aspx\">usd</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/kathy\/2979\/dollar-retail-sales-could-trigger-breakouts.aspx" },
              { "author": "tech",
              "title": "Solid GBP/JPY Sell Emerging...",
              "desc": "Should the GBP JPY continue to rally off near-term double bottom support at 1.3390  a selling opportunity at 139.12......",
              "time": "2 days ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/360\/gartley.aspx\">gartley</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/363\/gbp.aspx\">gbp</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/187\/jpy.aspx\">jpy</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/roger\/2972\/solid-gbpjpy-sell-emerging.aspx" },
              { "author": "kathy",
              "title": "Erratic Reaction in Forex After US and CAD Trade Numbers",
              "desc": "U.S. and Canadian trade numbers for the month of January were much stronger than the market had anticipated but weakness beneath the U.S. trade report s headlines pushed the U.S. dollar sharply lower....",
              "time": "2 days ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1559\/canadian trade deficit cad.aspx\">canadian trade deficit cad</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1558\/us trade deficit dollar.aspx\">us trade deficit dollar</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/kathy\/2977\/erratic-reaction-in-forex-after-us-and-cad-trade-numbers.aspx" },
              { "author": "boris",
              "title": "Will Euro Start A Short Covering Rally?",
              "desc": "A quiet session of consolidation in the currency market tonight with most of the event risk occurring in Asia Pacific as data from China and Australia dominated trade while euro and pound remained in tight ranges. Chinese economic performance continued to...",
              "time": "2 days ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/328\/balance.aspx\">balance</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/700\/chinese.aspx\">chinese</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/320\/inflation.aspx\">inflation</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/267\/labor.aspx\">labor</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/521\/short.aspx\">short</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1294\/tightening.aspx\">tightening</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/222\/unemployment.aspx\">unemployment</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/178\/usd.aspx\">usd</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/boris\/2947\/will-euro-start-a-short-covering-rally.aspx" },
              { "author": "tech",
              "title": "AUD/CHF Trade Example",
              "desc": "We recently completed a bearish butterfly that wasn t posted on FX360.  Here we examine what can be learned from this....",
              "time": "2 days, 1 minutes ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/426\/bearish.aspx\">bearish</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/410\/butterfly.aspx\">butterfly</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/411\/chart.aspx\">chart</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1555\/didnt.aspx\">didnt</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1556\/example.aspx\">example</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1557\/experience.aspx\">experience</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1428\/post.aspx\">post</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1298\/rules.aspx\">rules</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/647\/symmetry.aspx\">symmetry</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/brad\/2975\/audchf-trade-example.aspx" },
              { "author": "kathy",
              "title": "U.S. Dollar: Keep an Eye on Chinese Data",
              "desc": "It has been another quiet day in the foreign exchange markets with the U.S. dollar trading higher against some currencies and lower against others.  The fragment price action in greenback continues to reflect the divergence in the risks of investing...",
              "time": "2 days ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/390\/aud.aspx\">aud</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/219\/bank.aspx\">bank</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/174\/dollar.aspx\">dollar</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/233\/economic.aspx\">economic</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/187\/jpy.aspx\">jpy</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/301\/manufacturing.aspx\">manufacturing</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1091\/nbsp.aspx\">nbsp</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/180\/next.aspx\">next</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1554\/suda.aspx\">suda</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/178\/usd.aspx\">usd</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/kathy\/2974\/u-s-dollar-keep-an-eye-on-chinese-data.aspx" },
              { "author": "boris",
              "title": "Will Pound Test Yearly Lows?",
              "desc": "The divergence between European and Asian Pacific risk FX continued for the second day in a row in the currency market as both euro and pound slumped against the dollar while Aussie pushed higher.  The strength in the AUD USD was...",
              "time": "3 days, 1 minutes ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/328\/balance.aspx\">balance</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/201\/eur.aspx\">eur</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/187\/jpy.aspx\">jpy</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/301\/manufacturing.aspx\">manufacturing</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1553\/mp.aspx\">mp</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/973\/production.aspx\">production</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/220\/uk.aspx\">uk</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/178\/usd.aspx\">usd</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/237\/weak.aspx\">weak</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/boris\/2946\/will-pound-test-yearly-lows.aspx" },
              { "author": "boris",
              "title": "Weak German Trade Weighs on Euro",
              "desc": "German Trade Balance printed much worse than expected at 8.7B versus 16.4B forecasts as exports slid by -6.30 . This was the weakest reading since the March of 2009 when the global economy was in the throes of its worst contraction in...",
              "time": "3 days ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/328\/balance.aspx\">balance</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/394\/decline.aspx\">decline</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/201\/eur.aspx\">eur</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/555\/exports.aspx\">exports</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/178\/usd.aspx\">usd</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/boris\/2968\/weak-german-trade-weighs-on-euro.aspx" },
              { "author": "boris",
              "title": "Euro Rebound Loses Steam, As Debt Concerns Resurface",
              "desc": "Risk FX drifted lower in Asian and early European trade as worries over Southern European sovereign debt continued to dog  the EUR USD while cable suffered from a slew of negative data that pushed the unit back below the 1.5000 level....",
              "time": "4 days ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1387\/anz.aspx\">anz</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/670\/debt.aspx\">debt</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/982\/eco.aspx\">eco</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/187\/jpy.aspx\">jpy</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/259\/obama.aspx\">obama</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/220\/uk.aspx\">uk</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/178\/usd.aspx\">usd</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/boris\/2945\/euro-rebound-loses-steam-as-debt-concerns-resurface.aspx" }]
      };
      var init = function() { myWin.f.init(server + "/widgets/fx360_latestNews_jquery.js"); };

      window.setTimeout(init, 0);
  })();

