// ======================================================
// Copyright 2010 by Glenn EM Lee
// Customized for Power2x3.com
// All Rights Reserved
//
// Don't pass this script around guys, it's for you only!
// ======================================================

// ======================================================
// Below we create a new array variable to utilize
// Do not edit it, it's not safe to mess with.
// ======================================================
var Quotation=new Array()

// =================================================================================================
// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!
//
// Follow the quotation script below to increase the number of testimonials needed.
// Simply remove the comment tags (the // characters) from the additional quotations below
// then replace (New Testimonial Here) with the customer's testimonial.
// 
// This script should have all the testimonials you'll really ever need for any page on Power2x3.com
// Please don't screw this script up!
// If you're not sure about something or got questions, ask me first.
// =================================================================================================


// =======================
// Begin Safe Area to Edit
// =======================
// This part is the meat of where your testimonials will appear as "Random Quotes" on the pages you place this code!

Quotation[0] = "My wife and I have built two 7 figure businesses in the last six years. Having developed teams of multi-thousands, we know how important it is to have awesome tools, systems and mentors. We love MegaMarketingTools.com because they provide tools essential for internet marketing success. But a company is only as good as the leadership behind it. I have known the founder and have seen nothing but character and integrity from the owner. Karen and I are so proud to be a part of the MegaMarketingTools Family. <br /><br /> T. Le Mont & Karen Silver";
Quotation[1] = "MegaMarketingTools has been in the making for several months now. Just like MegaTraffic4u, Tim has been taking his time planning this complex & unique program to make sure it as user friendly as possible, profitable to the average user & filled with useful tools & information for anybody that wishes to conduct any kind of online business. Tim has been around this industry for a while now, he is a great honest individual & a very experienced marketer who's a pleasure to work with. I have complete confidence in Tim & I know he'll be running MegaMarketingTools in a very honest & professional manner. The program is being endorsed by many leading online marketers as a Breakthrough Program! I personally endorse & recommend MegaMarketingTools - I believe its a unique & special program which will benefit it's members for a very long time!<br /><br /> Amit Kifir";
//Quotation[2] = "New Testimonial Here";
//Quotation[3] = "New Testimonial Here";
//Quotation[4] = "New Testimonial Here";
//Quotation[5] = "New Testimonial Here";
//Quotation[6] = "New Testimonial Here";
//Quotation[7] = "New Testimonial Here";
//Quotation[8] = "New Testimonial Here";
//Quotation[9] = "New Testimonial Here";

// =======================
// End Safe Area to Edit, don't mess with below.
// =======================
// 
// =============================================
// Do not change anything below this line
// It's important to keep this script functional
// =============================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();

