var img0=new Image();
img0.src="/wp-content/themes/cfiles/images/front/01.png";

var img1=new Image();
img1.src="/wp-content/themes/cfiles/images/front/02.png"

var h1text=new Array();

h1text[0]='<span style="font-style: italic; font-weight: bold;">Web Design and Development</span><br/><br/>If you can dream it, we can build it. We offer a full line of services to design and develop virtually any website.'
h1text[1]='<span style="font-style: italic; font-weight: bold;">Marketing Material Development</span><br/><br/>Your message is important! We can help you make it stand out no matter what medium you choose.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;'

var current = 0;

function change() {
    current = current + 1;

    if (current >= h1text.length) {
        current = 0;
    }

    document.getElementById("front-blurb").innerHTML=h1text[current];
    document.getElementById("front-img").src = eval("img"+ current +".src")
}

setInterval ( "change()", 7000 );

