// JavaScript Document

// Store the divs into an array, make sure the amount of li's match up to the amount of array items
        var theDivs = new Array();
        theDivs.push("<div class='ProjectItem'> <img src='banner/imag1.jpg' /> <span class='ProjectTxt'> <h2 class='Ptitle'>Ellison Lee</h2> <p>Agency based in London representing photographers and stylists worldwide. Specializes in advertising, editorial and portrait photography. Interactive and eye-catching portfolio sections.</p><a href='http://www.ellisonlee.com' target='_new'>VISIT WEBSITE »</a></span></div>");
		
        theDivs.push("<div class='ProjectItem'> <img src='banner/imag2.jpg' /> <span class='ProjectTxt'> <h2 class='Ptitle'>Shopconcave</h2> <p>Beautifully designed for selling Concave football shoes with very strong AspdotnetStoreFront ecommerce management system fully loaded with all  tools for buyer and seller.</p><a href='http://www.shopconcave.com/' target='_new'>VISIT WEBSITE »</a></span></div>");
		
        theDivs.push("<div class='ProjectItem'><img src='banner/imag3.jpg' /><span class='ProjectTxt'><h2 class='Ptitle'>Language Services</h2> <p>Language Services is one of Australia’s leading providers of language solutions delivering professional and high quality language solutions with its team of over 4000 professional and qualified linguists.</p><a href='http://www.languageservices.com.au' target='_new'>VISIT WEBSITE »</a></span></div>");
		
        theDivs.push("<div class='ProjectItem'><img src='banner/imag4.jpg' /><span class='ProjectTxt'><h2 class='Ptitle'>IcanvasPrinting</h2> <p>iCanvasPrinting.com is for all your canvas printing needs. The online canvas ordering tool walks you through the simple choices. If you have digital photos you're able to upload the images with your order.</p><a href='http://www.icanvasprinting.com' target='_new'>VISIT WEBSITE »</a></span></div>");
		
        theDivs.push("<div class='ProjectItem'><img src='banner/imag5.jpg' /><span class='ProjectTxt'><h2 class='Ptitle'>Thames Valley University</h2> <p>Education that works. Thames Valley University Provides pre degree, under graduate, postgraduate, and professional courses. Highest ranked modern university in London.</p><a href='http://www.tvu.ac.uk' target='_new'>VISIT WEBSITE »</a></span></div>");
        // Sort the array
        theDivs.sort(function() { return 0.5 - Math.random() });

        // Write the divs to the page   
        var homeGDiv = document.getElementById("homeG");
        homeGDiv.innerHTML = "";
        for (var x = 0; x < theDivs.length; x++) {
            homeGDiv.innerHTML += theDivs[x];
        }
