(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": "Trading Psychology- Accepting the Risk",
              "desc": "Accepting the risk before placing a trade is one of the most important components of a winning trader s psychological makeup....",
              "time": "8 hours, 1 minutes ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1066\/consistent.aspx\">consistent</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1250\/each.aspx\">each</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1067\/errors.aspx\">errors</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/576\/even.aspx\">even</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/727\/important.aspx\">important</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/270\/losses.aspx\">losses</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1004\/trader.aspx\">trader</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/221\/traders.aspx\">traders</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/247\/trading.aspx\">trading</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/brad\/2790\/trading-psychology-accepting-the-risk.aspx" },
              { "author": "kathy",
              "title": "Forex: Credit Default Spreads and EUR/USD",
              "desc": "It is an extremely quiet day in the foreign exchange markets with most of major currencies ending the NY trading session unchanged against the U.S. dollar.  With no U.S. economic data on the calendar and little surprises from the G7...",
              "time": "12 hours, 1 minutes ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/192\/bp.aspx\">bp</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/670\/debt.aspx\">debt</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1421\/default.aspx\">default</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/201\/eur.aspx\">eur</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/363\/gbp.aspx\">gbp</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/613\/housing.aspx\">housing</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1091\/nbsp.aspx\">nbsp</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1513\/spreads.aspx\">spreads</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1514\/swap.aspx\">swap</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/178\/usd.aspx\">usd</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/kathy\/2788\/forex-credit-default-spreads-and-eurusd.aspx" },
              { "author": "tech",
              "title": "Short-Term NZD/JPY Buy Near 60.80",
              "desc": "We have a potential short-term NZD JPY buying opportunity at 60.83 based on an emerging 30min bullish......",
              "time": "15 hours, 1 minutes ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/374\/bullish.aspx\">bullish</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/349\/fibonacci.aspx\">fibonacci</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/360\/gartley.aspx\">gartley</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/443\/nzd.aspx\">nzd</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1053\/short term.aspx\">short term</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/564\/technical analysis.aspx\">technical analysis</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/226\/yen.aspx\">yen</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/roger\/2787\/short-term-nzdjpy-buy-near-60-80.aspx" },
              { "author": "kathy",
              "title": "Relationship between EUR/USD and Equities",
              "desc": "It is a quiet morning in the foreign exchange markets with the dollar holding onto its gains.  As our colleague Boris Schlossberg mentioned this morning  the G7 meeting proved to be a dud for the foreign exchange markets as the...",
              "time": "19 hours, 1 minutes ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/721\/correlation.aspx\">correlation</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/654\/currencies.aspx\">currencies</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/625\/equities.aspx\">equities</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/kathy\/2786\/relationship-between-eurusd-and-equities.aspx" },
              { "author": "boris",
              "title": "EUR/USD Rebounds on Short Covering",
              "desc": "After a rudderless G7 meeting over the weekend that saw no resolution on the Greek crisis   risk currencies drifted lower once again at the start of Asian session trade  but rebounded sharply on short covering flows when European markets opened...",
              "time": "1 days 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\/875\/fiscal.aspx\">fiscal</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/729\/flows.aspx\">flows</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/866\/fx.aspx\">fx</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/187\/jpy.aspx\">jpy</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/178\/usd.aspx\">usd</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/boris\/2772\/eurusd-rebounds-on-short-covering.aspx" },
              { "author": "boris",
              "title": "Euro Holds Its Ground Despite Unsatisfactory G7",
              "desc": "The G7 meeting over the weekend produced no concrete proposals on the resolution of the Greek crisis leaving the currency market adrift at the start of the Monday trade. The G7 officials also discussed the possibility of an additional 15bp tax...",
              "time": "1 days, 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\/729\/flows.aspx\">flows</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/252\/record.aspx\">record</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1512\/shorts.aspx\">shorts</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/696\/start.aspx\">start</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1431\/tax.aspx\">tax</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/178\/usd.aspx\">usd</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/boris\/2783\/euro-holds-its-ground-despite-unsatisfactory-g7.aspx" },
              { "author": "tech",
              "title": "GBP/NZD Long Opportunity at 2.2535",
              "desc": "A bullish Gartley pattern is forming on the GBP NZD....",
              "time": "3 days ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/374\/bullish.aspx\">bullish</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\/363\/gbp.aspx\">gbp</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\/362\/pattern.aspx\">pattern</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/465\/point.aspx\">point</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/brad\/2781\/gbpnzd-long-opportunity-at-2-2535.aspx" },
              { "author": "kathy",
              "title": "U.S. Dollar: Have We Hit A Capitulation Point?",
              "desc": "It has been an extremely volatile day in the financial markets with the Dow Jones Industrial average falling close 160 points only to recover aggressively in the last hour of trading to end the day in positive territory.  The turn...",
              "time": "3 days, 1 minutes ago",
              "cats": "<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\/224\/euro.aspx\">euro</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/285\/european.aspx\">european</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\/282\/payrolls.aspx\">payrolls</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/254\/report.aspx\">report</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\/kathy\/2780\/u-s-dollar-have-we-hit-a-capitulation-point.aspx" },
              { "author": "tech",
              "title": "EUR/USD Technicals: How Low Will Euro Go?",
              "desc": "Prices now approach the first Fibonacci support zone between 1.35-1.34 with room down to 1.31-1.30 in weeks ahead......",
              "time": "4 days ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/201\/eur.aspx\">eur</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/349\/fibonacci.aspx\">fibonacci</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/369\/support.aspx\">support</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/178\/usd.aspx\">usd</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/949\/zone.aspx\">zone</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/roger\/2778\/eurusd-technicals-how-low-will-euro-go.aspx" },
              { "author": "kathy",
              "title": "Non-Farm Payrolls: Disappointing but not Horrible ",
              "desc": "The latest non-farm payrolls report indicates that the U.S. labor market remains weak but like a semi truck turning on a highway  it is moving in the right direction....",
              "time": "4 days ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/267\/labor.aspx\">labor</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/282\/payrolls.aspx\">payrolls</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/254\/report.aspx\">report</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/222\/unemployment.aspx\">unemployment</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/kathy\/2771\/non-farm-payrolls-disappointing-but-not-horrible.aspx" },
              { "author": "boris",
              "title": "A Suprise Reaction to the NFPs?",
              "desc": "Another volatile night of trade in the currency markets with EUR USD making fresh multi month lows as risk aversion reigned supreme ahead of US NFP report at 13 30 GMT. The EUR USD dropped below the 1.3650 level for the first time since...",
              "time": "4 days ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/695\/employment.aspx\">employment</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\/278\/nfp.aspx\">nfp</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/535\/ppi.aspx\">ppi</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\/2732\/a-suprise-reaction-to-the-nfps.aspx" },
              { "author": "boris",
              "title": "The Dilemma For G-7",
              "desc": "Another wild night of volatility across all capital markets saw key levels give way in gold  equities and the euro as risk liquidation continued unabated ahead of the NFP report at 13 30 GMT and the G-7 meeting this weekend. With liquidity...",
              "time": "4 days ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/324\/capital.aspx\">capital</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/875\/fiscal.aspx\">fiscal</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/402\/gold.aspx\">gold</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/712\/key.aspx\">key</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/743\/meeting.aspx\">meeting</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/278\/nfp.aspx\">nfp</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/227\/volatility.aspx\">volatility</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/boris\/2769\/the-dilemma-for-g-7.aspx" },
              { "author": "tech",
              "title": "Trading Around the News",
              "desc": "Today I will go over how I handle trading near major news announcements....",
              "time": "4 days, 1 minutes ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1273\/dont.aspx\">dont</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/249\/major.aspx\">major</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1336\/me.aspx\">me</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/229\/move.aspx\">move</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1335\/moves.aspx\">moves</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/362\/pattern.aspx\">pattern</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/890\/therefore.aspx\">therefore</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/221\/traders.aspx\">traders</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/247\/trading.aspx\">trading</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/brad\/2768\/trading-around-the-news.aspx" },
              { "author": "kathy",
              "title": "Forex Market Hit By Crisis Of Confidence",
              "desc": "A full-fledged meltdown in the forex markets is the best way to describe today s price action as investors sought safety in the low yielding U.S. dollar.  The greenback rose against every major currency except for the Japanese Yen which further...",
              "time": "4 days ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/174\/dollar.aspx\">dollar</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/201\/eur.aspx\">eur</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/202\/investors.aspx\">investors</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\/281\/nonfarm.aspx\">nonfarm</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/282\/payrolls.aspx\">payrolls</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/254\/report.aspx\">report</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/178\/usd.aspx\">usd</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/226\/yen.aspx\">yen</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/kathy\/2767\/forex-market-hit-by-crisis-of-confidence.aspx" },
              { "author": "boris",
              "title": "Trichet Offers Support For Greece",
              "desc": "At the monthly post announcement press conference  ECB President Jean Claude Trichet reaffirmed many of the monetary policy themes he has stressed in the past and at the same time attempted to reassure the markets about the EU s long term...",
              "time": "5 days, 1 minutes ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/272\/ecb.aspx\">ecb</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/875\/fiscal.aspx\">fiscal</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1480\/greece.aspx\">greece</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/212\/policy.aspx\">policy</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/369\/support.aspx\">support</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/288\/trichet.aspx\">trichet</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/boris\/2762\/trichet-offers-support-for-greece.aspx" }]
      };
      var init = function() { myWin.f.init(server + "/widgets/fx360_latestNews_jquery.js"); };

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