﻿var sites = [];
        
sites[0] = { title: "Instrumania", achievement: "Musical Instrument Comparison has never looked so good! Great website."};
sites[1] = { title: "Golden Finishes", achievement: "Clearly search engine optimisation does work! Thanks guys!" };
sites[2] = { title: "Liberty Marketing", achievement: "We are thrilled with the overall performance of our website. The SEO is second to none."};
sites[3] = { title: "Gift House International", achievement: "Website SEO increased sales and increased the company’s online profile. Easy to manage CMS."};
sites[4] = { title: "Sunbase USA Ltd.", achievement: "Great looking website built professionally by experts in website development."};
sites[5] = { title: "Daisy Day Nursery", achievement: "What a difference a properly developed website makes, outstanding job!"};
sites[6] = { title: "Lincoln House Hotel", achievement: "Our new website has provided us with an increase in business! Totally professional service."};
sites[7] = { title: "Civil Student Jobs", achievement: "We needed experts for this job and that is precisely what we got! Excellent Website."};
sites[8] = { title: "Modelmakers", achievement: "The most valuable marketing tool we have! Great ongoing support too!"};
sites[9] = { title: "Zucchero Patisserie", achievement: "This new site is easy to manage, has increased traffic and looks fabulous, what more can I say."};
sites[10] = { title: "TimberTech", achievement: "Fantastic website optimisation driving a massive number of enquiries!"};
sites[11] = { title: "Kay Swinburne", achievement: "Professional service and excellent looking website, very pleasing."};
sites[12] = { title: "Timto", achievement: "Very impressed with the overall service we received from Designer Websites!"};

        
        $(document).ready(function() {
            $(".portfolio").slideShow({
                interval: 2,
                
                gotoSlide: function(slideShow, index) {
                    $(".info").fadeOut(750, function() {
                        $(".info").html("<strong>" + sites[index].title + ":</strong> <q><em>" + sites[index].achievement + "</em></q>\n");
                        $(".info").fadeIn(750);
                    });
                }
            });
        });