var msg1 = "Our top quality professional website design creates unique sites that are easy to use, logical, intuitive, and loved by users. Our sites increase appeal, win return visits, get better search engine ratings, and suit your needs perfectly, because we custom tailor every site to the unique needs of each business.";

var msg2 = "If you chose quick and cheap for your websites, you now find they are not getting enough hits and not generating the revenue you expected.  This is because 'quick 'n cheap' website builders don't know SEO -- they don't know how to make a website top the search engines. They can't design an appealing user interface that wins many customers + more business. You need your sites revamped by SEO experts who know exactly what they are doing.";

var msg3 = "From simple text sites to picture-rich sites requiring careful layout to maximize appeal, you can be sure the site we design will not be from a template, but is uniquely created to fit your business needs and theme, and will stand out above other sites.  You will have a unique website that showcases the special talents of your business, is artistic, creative, and a pleasure to use.";

var msg4 = "The right database design can make your site faster, facilitate access to information quickly, and can generates more revenue. We carefully plan the right database to fit your unique needs, because it pays off in the long run. Although we can fix old databases and interfaces, it is usually better to start with a new MySQL or MSSQL database tied to a smoother interface.";

var msg5 = "99% of Ecommerce packages force people to endure multiple checkout screens, just to see shipping costs on the last screen.  Our checkout gives everything up front on one screen.  It is quick, easy, does not turn customers away, and gives the best possible internet shopping experience today. Customers happily return to buy more, because of our easy, customized checkout system.";

var msg6 = "Only superior web designers know the right formula to make your website work smoothly in all browsers, and avoid 'quirky' and unmaintainable code that alienates visitors.  We have found that right formula to give each site a unique flair that sets it above competitive sites, and which attracts increased acclaim, business, clientele, and most of all, revenue.";

var msg7 = "Interactive web pages can be a boon to a site if done right, but a curse if not. Ads on big sites make 'flash' a nuisance that more and more people block, and its overuse can seriously impair your site. The right balance between interactivity, and top search-engine ranking is needed to benefit your site the most for your customers, new visitors, and your site's revenue.";

var msg8 = "If you want to link your website to a payment gateway of your choice, automatically send emails to buyers, send orders right to suppliers, allow for custom orders and billing, and even connect web purchases directly to your accounting system, we can do it all.  No need for expensive ERP software, Prime-Consultants.com can connect your website real-time to any interface you can imagine!";

var msg9 = "From simple text sites to picture-rich sites requiring careful layout to maximize appeal, you can be sure the site we design will not be from a template, but is uniquely created to fit your business needs and theme, and will stand out above other sites.  You will have a unique website that showcases the special talents of your business, is artistic, creative, and a pleasure to use.";

function stop() { 
   clearInterval(typer);
   while (i<=msg.length) {
    document.getElementById("ttype").innerHTML += msg.substr(i,1);
    i++;
    }
 }

function start(numb) { 
    i = 0;
    msg = numb;
    document.getElementById("ttype").innerHTML = "<BR>";
    typer = setInterval(ttype, 45);
}

function ttype()  {
    document.getElementById("ttype").innerHTML += msg.substr(i,1);
    i++;
    if (i>msg.length)
       {
         clearInterval(typer);
       }
}


