
var tips = new Array()
var index = 0;

//change the tips if desired. Add/ delete additional tips as desired.
function BuildArray()
{
tips[0]='<b><i><font color="#b92525">SOURCING </font><font color="#192a57">Trade Tip:</font><br /></i> Are you aware of all the countries in which your company can source parts and inputs <u>duty-free?</u></b><br /><br /> There are more than 135 countries that benefit from reduced duties or duty-free access to the US market.  For instance, instead of sourcing products from markets like Europe, China or Japan which are assessed the higher “Normal Trade Relations” tariff rate, your company may benefit from potential duty savings for your components as a result of importing from Australia, most African countries, Central America, NAFTA partners and many other countries.  Let TradeMoves LLC show you ways to cut costs in your sourcing operations.'

tips[1]='<b><i><font color="#b92525">MARKET ACCESS </font><font color="#192a57">Trade Tip:</font><br /></i> Are you aware of labeling regulations, product standards and import requirements to get your product into new markets?</b><br /><br />An export manual with all your trade tools and resources may be just what your company needs to help you manage your growth into important new markets.  Let TradeMoves LLC be your “one-stop shop” for international trade regulations – we can design a customized and interactive database of trade information for your sourcing and logistics teams.'

tips[2]='<b><i><font color="#b92525">DUTY-FREE EXPORT </font><font color="#192a57">Trade Tip:</font><br /></i>Are you taking full advantage of lower duties in trade agreements?</b><br /><br />With numerous bilateral and regional free trade agreements (FTAs), many US products can enter significant export markets at a reduced duty or duty-free.  The key to preferential access is to ensure rules of origin are met which are the criteria needed to determine the national origin of a product and whether the product qualifies for lower duties. In a world where more and more goods are produced from parts and inputs coming from other countries, conferring origin to a product is not always an easy task.  Contact TradeMoves LLC to learn more about preferential rules of origin for your products and how your company can fully benefit from FTAs.'

tips[3]='<b><i><font color="#b92525">COST-SAVING </font><font color="#192a57">Trade Tip:</font><br /></i>Are you using the most advantageous classification for your product?</b><br /><br />You may be able to cut costs just by re-visiting tariff classifications for your products as they move internationally.  Many manufacturers depend on their customs broker to classify the product, but more advantageous classifications may exist based on level of processing or functionality of your product.  Contact TradeMoves LLC to see how we can potentially reduce your tariff burden.'

tips[4]='<b><i><font color="#b92525">CUSTOMS FACILITATION </font><font color="#192a57">Trade Tip:</font><br /></i>Are the tariff codes for your products correct?</b><br /><br />If not, your company may face delays at the border, and/or penalties for not complying with customs regulations.  TradeMoves LLC can review your tariff classifications to ensure accuracy and compliance.'

tips[5]='<b><i><font color="#b92525">INTERNATIONAL STRATEGY </font><font color="#192a57">Trade Tip:</font><br /></i> Do US trade negotiators know your company’s international trade priorities?</b><br /><br />Are your trade concerns being heard in Washington, DC and in your key export markets?  When countries sit at the table to negotiate greater access to each other’s markets, your company should have its export and investment priorities on the table. TradeMoves LLC can help your company position its interests with US and foreign trade negotiators to increase international sales.  Contact TradeMoves LLC to inquire how we advocate for lower tariffs and removal of obstacles limiting your exports.'

//add another element to the tips array with the string behind it

document.getElementById("numb").innerText = index + 1;
document.getElementById("tip").innerHTML = tips[index];

//var whichtip=Math.floor(Math.random()*(tips.length))
//document.write(tips[whichtip])

}

function GoNext()
{
  index += 1;
  if (index == tips.length) {
    index = 0;
  }
  document.getElementById("numb").innerText = index + 1;
  document.getElementById("tip").innerHTML = tips[index];
}

function GoPrev()
{
 index -= 1;
 if (index < 0) {
    index = tips.length - 1;
  }
  document.getElementById("numb").innerText = index + 1;
  document.getElementById("tip").innerHTML = tips[index];
}



