			var numBuyersQuotes = 3  // Change this to the total number of buyers quotes (remember the  ZERO counts as the first one).

			var lastBuyersQuote = numBuyersQuotes -1
    		var buyersQuotes = new Array(numBuyersQuotes)
			
			// Add as many buyers quotes below as you'd like. Make sure the "numBuyersQuotes" above has the correct number of quotes.
			
			buyersQuotes [0] = "<span class=\"darkbluesub\">Buyer Benefits</span><br />Global 500 Retailer reduces working capital $150M 12 months after SCF <br>go-live. <a href=\"benefits/pdfs/CS-Buyer1.pdf\" target=\"_blank\">...more</a>"

			buyersQuotes [1] = "<span class=\"darkbluesub\">Buyer Benefits</span><br />€70m euros benefit for Europe manufacturer with top 50 suppliers.<a href=\"benefits/pdfs/CS-Buyer2.pdf\" target=\"_blank\"><br>...more</a>"

			buyersQuotes [2] = "<span class=\"darkbluesub\">Buyer Benefits</span><br />Fortune 500 US Retailer brings SCF to reduce supplier financial risk.<a href=\"benefits/pdfs/CS-Buyer3.pdf\" target=\"_blank\"><br>...more</a>"

			
			// End editing the buyers quotes.
			
			
			var numSuppliersQuotes = 6  // Change this to the total number of suppliers quotes (remember the  ZERO counts as the first one).

			var lastSuppliersQuote = numSuppliersQuotes -1
    		var suppliersQuotes = new Array(numSuppliersQuotes)
			
			// Add as many supplier quotes below as you'd like. Make sure the "numSuppliersQuotes" above has the correct number of quotes.
			
			suppliersQuotes [0] = "<span class=\"darkbluesub\">Supplier Benefits</span><br />ECI uses SCF to determine if invoices will be paid in a timely manner. <br><a href=\"benefits/pdfs/ECI_vFinal_7-1-10.pdf\" target=\"_blank\">...more</a>"
			
			suppliersQuotes [1] = "<span class=\"darkbluesub\">Supplier Benefits</span><br />Sj&oslash;rring Maskinfabrik A/S Survives Economic Downturn with SCF. <a href=\"benefits/pdfs/CS-Sjorring_Maskinfabrik.pdf\" target=\"_blank\"><br>...more</a>"
			
			suppliersQuotes [2] = "<span class=\"darkbluesub\">Supplier Benefits</span><br />AIR LIQUIDE See SCF as better deal than Payment Discounts. <a href=\"benefits/pdfs/CS-Air_Liquide.pdf\" target=\"_blank\"><br>...more</a>"

			suppliersQuotes [3] = "<span class=\"darkbluesub\">Supplier Benefits</span><br />Hong Kong's TAKE ONE sees SCF as tonic to customer's move to Open Account. <a href=\"benefits/pdfs/CS-Take_One.pdf\" target=\"_blank\">...more</a>"

			suppliersQuotes [4] = "<span class=\"darkbluesub\">Supplier Benefits</span><br />Germany's MAHLE enjoys unprecedented cashflow visibility with key customer. <a href=\"benefits/pdfs/CS-Mahle.pdf\" target=\"_blank\">...more</a>"

			suppliersQuotes [5] = "<span class=\"darkbluesub\">Supplier Benefits</span><br />UK's RONSEAL improves working capital flexibility and efficiency. <a href=\"benefits/pdfs/CS-Ronseal.pdf\" target=\"_blank\"><br>...more</a>"
			
			// End editing the supplier quotes.
			

			
			// If the buyers quote number is NOT set then this will set it to the first quote.
			if ( typeof(bn) == "undefined" ) {
				var bn = 0;
			}

			// If the suppliers quote number is NOT set then this will set it to the first quote.
			if ( typeof(sn) == "undefined" ) {
				var sn = 0;
			}





    		function buyersInsights(direction) {			
			
			if (direction == 'prev' && bn == 0) {
			bn = lastBuyersQuote;
			}
			else if (direction == 'prev') { bn =bn - 1; }
			

			if (direction == 'next' && bn == lastBuyersQuote) {
			bn = 0;
			}
			else if (direction == 'next') {	bn = bn + 1; }
			
			document.getElementById('buyersInsightsContent').innerHTML = buyersQuotes[bn];
		}
		
		
		
    		function suppliersInsights(direction) {			
			
			if (direction == 'prev' && sn == 0) {
			sn = lastSuppliersQuote;
			}
			else if (direction == 'prev') { sn = sn - 1; }
			

			if (direction == 'next' && sn == lastSuppliersQuote) {
			sn = 0;
			}
			else if (direction == 'next') {	sn = sn + 1; }	
			
			document.getElementById('suppliersInsightsContent').innerHTML = suppliersQuotes[sn];
		}
