var Market = {
    info: ["",
            "Google Analytics gives you insights into your website traffic and marketing effectiveness. It lets you analyze traffic data enabling you to focus on weak areas to make them stronger and dominate in the areas where you are already strong. Being able to analyze data and traffic is a huge advantage over your competitors giving you the edge you need to stay ahead of the competition.",
           "Establishing a baseline means to compare data and history to notice trends and actuals giving a present day footprint. Baselines allow you to determine how improvements can be made and how to gage your efforts by realizing growth rates, trends over time.",
           "At ComXL we feel it is important that our customers have the ability to see the efforts that have been put in place and realize where and how they are making an impact. By delivering reliable reports, you will get a sense of progress and direction and have accurate information to compare against the established baseline.",
           "Utilizing our very own social network of thousands upon thousands of connections, we have the ability to broadcast to a colossal audience making a serious impact on traffic for your business.",
           "People are online searching for their business needs in your area. Now days more people use the internet than their local phone book to find what they are looking for. Get your business listed NOW and get your business services and products in front of them. People use the internet to search for local products and services on a daily basis. Don't let them find your competitors.",
           "Directory submissions are known throughout the SEO world as a great way to achieve search engine visibility and improve rankings. We use integrity while manually submitting your website to the top major directories following the rules and guidelines required."],
            
    Help:function(val)
    {
        var txt = this.info[val];
        if (txt != undefined)
            $("helpDiv").innerHTML = txt;
        else
            $("helpDiv").innerHTML = "Coming soon...";

        Dialog.show('dlgHelp');
    },

    changeTab:function(num, elem)
    {
        /*$("tabs").select("a").each(function(e) {
            e.removeClassName("selected");
        });*/
        //$(elem).addClassName("selected");
        var tabDiv = $$(".tab");
        tabDiv.each(function(e) { e.hide(); });
        tabDiv[num].show();

    },

    package:function(num)
    {
        var pkg = $$(".pkg");
        pkg.each(function(e) { e.hide(); });
        pkg[num].show();
    },

    clearHeader:function()
    {
        $$(".mtab").each(function(e){
            e.href = "javascript:void(0)";
        });
    }
};
