

var numoflogos = 9
var i=0


var alllogos= new Array(
"/images/footer/logos/paul.gif", 
"/images/footer/logos/arrowhead.gif", 
"/images/footer/logos/otb_sm.gif", 
"/images/footer/logos/arrowhead.gif", 
"/images/footer/logos/pur.gif", 
"/images/footer/logos/paul.gif", 
"/images/footer/logos/arrowhead.gif", 
"/images/footer/logos/otb_sm.gif",
"/images/footer/logos/paul.gif")


var allsecond= new Array(
"/images/footer/logos/otb_sm.gif", 
"/images/footer/logos/pur.gif", 
"/images/footer/logos/arrowhead.gif", 
"/images/footer/logos/paul.gif", 
"/images/footer/logos/arrowhead.gif", 
"/images/footer/logos/otb_sm.gif", 
"/images/footer/logos/arrowhead.gif", 
"/images/footer/logos/pur.gif",
"/images/footer/logos/paul.gif")


function runit() {
        if (document.images) {
                if (i<numoflogos){
                        document.logos.src=alllogos[i]; document.second.src=allsecond[i]
                        i++;
                        setTimeout('runit(i)', 3000);
                }
        else{
                i=0;
                runit();
        }
}}




var launch;
function launch(href,title) {
	studio = window.open(href, title, 'width=290,height=350');
}


