(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": "CHF/JPY to Resume Downtrend at 83.79?",
              "desc": "A bearish Gartley pattern on the CHF JPY may provide an opportunity to go short within the recent longer term downtrend....",
              "time": "1 hours ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/426\/bearish.aspx\">bearish</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/527\/chf.aspx\">chf</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/187\/jpy.aspx\">jpy</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/brad\/6986\/chfjpy-to-resume-downtrend-at-83-79.aspx" },
              { "author": "kathy",
              "title": "EUR: The Potential Catalysts For A Breakout",
              "desc": "Currencies and equities ended the week on a strong note thanks to the better than expected U.S. labor market report. All of the major currencies traded higher against the U.S. dollar on Friday with the exception of the Swiss Franc which...",
              "time": "3 hours, 1 minutes 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\/409\/cad.aspx\">cad</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\/178\/usd.aspx\">usd</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/kathy\/6984\/eur-the-potential-catalysts-for-a-breakout.aspx" },
              { "author": "kathy",
              "title": "Dollar Soars, Fed, BoJ and Obama All Benefit from Strong Jobs Number",
              "desc": "Everyone from the Federal Reserve to the Bank of Japan and President Obama will breathe a sigh a relief after seeing today s jobs report. Thanks to a 243k increase in non-farm payrolls  the unemployment rate has fallen for the fifth consecutive...",
              "time": "11 hours ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/204\/fed.aspx\">fed</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/218\/federal.aspx\">federal</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/407\/increase.aspx\">increase</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/281\/nonfarm.aspx\">nonfarm</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/525\/number.aspx\">number</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/282\/payrolls.aspx\">payrolls</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/262\/president.aspx\">president</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/195\/reserve.aspx\">reserve</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/kathy\/6982\/dollar-soars-fed-boj-and-obama-all-benefit-from-strong-jobs-number.aspx" },
              { "author": "boris",
              "title": "UK PMI Provides A Boost to Risk FX Ahead of NFP",
              "desc": "Risk FX was mildly bid in a typically quiet pre-NFP session boosted by better than expected UK PMI numbers and slightly positive tone in European equities. With no major economic data out of the Eurozone the only report of note was...",
              "time": "15 hours ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/272\/ecb.aspx\">ecb</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/201\/eur.aspx\">eur</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1482\/greek.aspx\">greek</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1915\/jan.aspx\">jan</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/282\/payrolls.aspx\">payrolls</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/396\/pmi.aspx\">pmi</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/398\/services.aspx\">services</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\/6926\/uk-pmi-provides-a-boost-to-risk-fx-ahead-of-nfp.aspx" },
              { "author": "boris",
              "title": "Germany - No to ECB Haircuts",
              "desc": "German economy minister Philip Reosler rejected the idea that ECB should participate directly in the write-down of Greek debt stating the  European states and their taxpayers already make a massive contribution to Greece s restructuring process though their support efforts....",
              "time": "17 hours ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/670\/debt.aspx\">debt</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/272\/ecb.aspx\">ecb</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/2298\/greeces.aspx\">greeces</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1482\/greek.aspx\">greek</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/2101\/massive.aspx\">massive</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/boris\/6979\/germany--no-to-ecb-haircuts.aspx" },
              { "author": "kathy",
              "title": "USD: For NFP, 100K Is Magic Number",
              "desc": "There has been very little consistently in the performance of the greenback ahead of Friday s non-farm payrolls report. The USD ended the North American trading session marginally higher against the EUR  GBP  CAD and CHF  but weakened slightly against the JPY...",
              "time": "1 days, 1 minutes ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/409\/cad.aspx\">cad</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\/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\/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>,",
              "link": "http:\/\/www.fx360.com\/commentary\/kathy\/6978\/usd-for-nfp-100k-is-magic-number.aspx" },
              { "author": "kathy",
              "title": "Bernanke Comments, Non-Farm Payrolls Preview",
              "desc": "Non-Farm Payrolls will be released on Friday and all signs point to slower job growth.  According to this morning s jobless claims report  the number of people filing for unemployment benefits declined last week but if we average the last 4...",
              "time": "1 days ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/895\/claims.aspx\">claims</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/174\/dollar.aspx\">dollar</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/2018\/nfps.aspx\">nfps</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>,",
              "link": "http:\/\/www.fx360.com\/commentary\/kathy\/6971\/bernanke-comments-non-farm-payrolls-preview.aspx" },
              { "author": "boris",
              "title": "Why China Will Support The Euro",
              "desc": "EUR USD spiked by more than 50 cents in a matter of seconds in morning European trade on comments by China s premier Wen Jiabao that the country will consider greater involvement in EFSF and ESM stabilization funds. Mr. Wen stated that it...",
              "time": "2 days, 1 minutes ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/308\/china.aspx\">china</a>, <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\/285\/european.aspx\">european</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/884\/stabilization.aspx\">stabilization</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1562\/wen.aspx\">wen</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/boris\/6969\/why-china-will-support-the-euro.aspx" },
              { "author": "boris",
              "title": "USD/JPY At Year Lows",
              "desc": "Risk FX came under some profit taking pressure in morning European dealing with EUR USD stalling ahead of the 1.3200 barrier as it fell to session lows of 1.3122 before stabilizing at 1.3150. With very little economic data on the docket trading...",
              "time": "2 days ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/895\/claims.aspx\">claims</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/2242\/dec.aspx\">dec</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1915\/jan.aspx\">jan</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/896\/jobless.aspx\">jobless</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/187\/jpy.aspx\">jpy</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/228\/pair.aspx\">pair</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/509\/profit.aspx\">profit</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/178\/usd.aspx\">usd</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/2293\/yamaguchi.aspx\">yamaguchi</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/boris\/6925\/usdjpy-at-year-lows.aspx" },
              { "author": "boris",
              "title": "USD/JPY Approaches 76.00 as BOJ Signals No Intervention ",
              "desc": "USD JPY continued to drift lower in Asian trade coming within a few pips of the key 76.00 level after BOJ Deputy Governor Hirohide Yamaguchi said the he didn t see the need for immediate policy action. USD JPY has dropped more than 200...",
              "time": "2 days ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/416\/boj.aspx\">boj</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/233\/economic.aspx\">economic</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\/178\/usd.aspx\">usd</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/2293\/yamaguchi.aspx\">yamaguchi</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/boris\/6967\/usdjpy-approaches-76-00-as-boj-signals-no-intervention.aspx" },
              { "author": "tech",
              "title": "CAD/CHF Short Opportunity at 0.9247",
              "desc": "A bearish Gartley pattern is emerging on the CAD CHF 4hr Chart....",
              "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\/409\/cad.aspx\">cad</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/527\/chf.aspx\">chf</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/360\/gartley.aspx\">gartley</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/brad\/6966\/cadchf-short-opportunity-at-0-9247.aspx" },
              { "author": "kathy",
              "title": "Top 5 Reasons Why EUR Rallied",
              "desc": "The EUR USD consolidated for the past 5 trading days  leaving investors to wonder whether the loss of momentum will be temporary or permanent....",
              "time": "2 days, 1 minutes ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/794\/activity.aspx\">activity</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/390\/aud.aspx\">aud</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/394\/decline.aspx\">decline</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/233\/economic.aspx\">economic</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/201\/eur.aspx\">eur</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/1092\/house.aspx\">house</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/406\/index.aspx\">index</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/301\/manufacturing.aspx\">manufacturing</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/178\/usd.aspx\">usd</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/kathy\/6964\/top-5-reasons-why-eur-rallied.aspx" },
              { "author": "tech",
              "title": "Review: Stop Placement",
              "desc": "Why stops are a critical tool and how we implement them in our trading....",
              "time": "3 days ago",
              "cats": "",
              "link": "http:\/\/www.fx360.com\/commentary\/brad\/6958\/review-stop-placement.aspx" },
              { "author": "tech",
              "title": "GBP/CAD Long Opportunity at 1.5640",
              "desc": "A bullish Gartley pattern is forming on the GBP CAD....",
              "time": "4 days, 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\/409\/cad.aspx\">cad</a>, <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>,",
              "link": "http:\/\/www.fx360.com\/commentary\/brad\/6950\/gbpcad-long-opportunity-at-1-5640.aspx" },
              { "author": "tech",
              "title": "AUD/CHF to Resume Uptrend at 0.9654?",
              "desc": "A bullish butterfly pattern is currently forming on the AUD CHF....",
              "time": "7 days ago",
              "cats": "<a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/390\/aud.aspx\">aud</a>, <a href=\"http:\/\/www.fx360.com\/commentary\/RelatedResults\/527\/chf.aspx\">chf</a>,",
              "link": "http:\/\/www.fx360.com\/commentary\/brad\/6938\/audchf-to-resume-uptrend-at-0-9654.aspx" }]
      };
      var init = function() { myWin.f.init(server + "/widgets/fx360_latestNews_jquery.js"); };

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

