﻿function hideLoader() {

        if (location.hash.slice(1) == 1) {
            document.title = "G3M Solutions | Website design and development";
        }

        if (location.hash.slice(1) == 2) {
            document.title = "G3M Solutions | Services";
        }

        if (location.hash.slice(1) == 3) {
            document.title = "G3M Solutions | About us";
        }

        if (location.hash.slice(1) == 4) {
            document.title = "G3M Solutions | Contact us ";
        }

        if (location.hash.slice(1) == 5) {
            document.title = "G3M Solutions | Recent projects";
        }

        if (location.hash.slice(1) == 6) {
            document.title = "G3M Solutions | What are we up to";
        }


            document.getElementById('loader').style.display = 'none';
            document.getElementById('container').style.visibility = '';
            document.getElementById('modules').style.display = '';

           
    }

    function showHome() {
        //document.getElementById('ProjectsPage').style.display = 'none';
        document.title = 'G3M Solutions | Website design and development';
    }

    function showServices() {
        // document.getElementById('ProjectsPage').style.display = 'block';
        document.title='G3M Solutions | Services';
    }

    function showAbout() {
        // document.getElementById('ProjectsPage').style.display = 'block';
        document.title = 'G3M Solutions | About us';
    }

    function showContact() {
        // document.getElementById('ProjectsPage').style.display = 'block';
        document.title = 'G3M Solutions | Contact us';
    }
    function showProjects() {
       // document.getElementById('ProjectsPage').style.display = 'block';
        document.title = 'G3M Solutions | Recent projects';
    }

    