
<!-- added by vvl 3.10.2011 for banner -->
/*
 *
 * this is the file self contain, do not use more than once in a page or frame... 
 *
 */

// ***  modify freely, make sure all strings are quoted, if you need a quote use \\" 

bannerText = 'We are currently developing our event schedule for 2012. Please check back soon for updated information. ';

url="http://www.vvl.com";

textColor="green";

textSize="large";

bannerWidth="55";

bannerSpeed="200";


// *** venture beyond this at your own risk!

bannerStyle ="font-family:AntigoniBd;font-weight: bolder;font-size: " + textSize + "; color:" + textColor + ";font-style: ;font-variant: small-caps;text-decoration: none;";
setupTicker(bannerText, bannerWidth, bannerSpeed, bannerStyle, url); 

<!--
function setupTicker(theMessage, fwidth, speed, inStyle, inUrl) {
    x = new Date();
    formcount = x.getTime();
    formName = "scrollForm" + formcount;
    fieldName = "scrollField" + formcount;
    
    if (inUrl == null) {
    	inUrl = "#";
    }
    
    // process default style
    if (inStyle == null) {
    	if ((navigator.userAgent.indexOf("MSIE") == -1) && (navigator.userAgent.indexOf("msie") == -1)) {
    	    fieldStyle = "";
    	} else {
    	    fieldStyle = "font-family:AntigoniBd;font-weight: bolder;font-size: small;color: green;font-style: ;font-variant: small-caps;text-decoration: none;"; // this is explorer
    	}
    } else {
    	fieldStyle = inStyle;
    }
    document.write('<FORM name="' + formName + '"><a href="' + inUrl + '" target="blank"><INPUT NAME="' + fieldName + '" SIZE="' + fwidth + '" STYLE="' + fieldStyle + '"></a></FORM>');
    eval("scrollText(document." + formName + "." + fieldName + ",theMessage,fwidth,speed,0,0,0)");
}

function scrollText(theField, theMessage, theWidth, theSpeed, scrollStart, scrollEnd, scrollCount) {
    theOtherField = theField;
    if (scrollEnd < (theMessage.length)) {
        theField.value = padTextPrefix(theMessage.substring(scrollStart, scrollEnd), " ", theWidth - scrollCount);
        scrollEnd++;
    } else {
        scrollCount++;
        theField.value = padTextSuffix(padTextPrefix(theMessage.substring(scrollStart, scrollEnd), " ", theWidth - scrollCount), " ", theWidth);
    }
    if (scrollCount == (parseInt(theWidth) - theMessage.substring(scrollStart, scrollEnd).length + 1)) {
        scrollStart++;
    }
    if (scrollStart == scrollEnd) {
        scrollStart = 0;
        scrollEnd = 0;
        scrollCount = 0;
    }
    scrollTimeout = eval("window.setTimeout('scrollText(theOtherField,\"" + theMessage + "\"," + theWidth + "," + theSpeed + "," + scrollStart + "," + scrollEnd + "," + scrollCount + ")',theSpeed)");
}

function padTextPrefix(InString, PadChar, DefLength) {
    if (InString.length >= DefLength) {
        return (InString);
    }
    OutString = InString;
    for (Count = InString.length; Count < DefLength; Count++) {
        OutString = PadChar + OutString
    }
    return (OutString);
}

function padTextSuffix(InString, PadChar, DefLength) {
    if (InString.length >= DefLength) {
        return (InString);
    }
    OutString = InString;
    for (Count = InString.length; Count < DefLength; Count++) {
        OutString = OutString + PadChar
    }
    return (OutString);
}
// 
-->
<!-- added by vvl 3.10.2011 for banner -->
		
