var MINIMUM_FONT = "10";
var UNITS = "";

function elementFontSize(element)
{
    var fontSize = MINIMUM_FONT; 

    if (document.defaultView)
    {
        var computedStyle = document.defaultView.getComputedStyle(element, null);
        if (computedStyle)
        {
            fontSize = computedStyle.getPropertyValue("font-size");
        }
    }
    else if (element.currentStyle)
    {
        fontSize = element.currentStyle.fontSize;
    }

    if ((UNITS.length == 0) && (fontSize != MINIMUM_FONT))
    {
        UNITS = fontSize.substring(fontSize.length - 2, fontSize.length)
    }

    return parseFloat(fontSize);
}

function adjustFontSizeIfTooBig(idOfElement)
{
    var oTextBoxOuterDiv;
    var oTextBoxMiddleDiv;
    var oTextBoxInnerDiv;
    var oTextBoxOuterDiv = document.getElementById(idOfElement);
    
    if (oTextBoxOuterDiv)
    {
        oTextBoxMiddleDiv = getChildOfType(oTextBoxOuterDiv, "DIV", 0);
        if (oTextBoxMiddleDiv)
        {
            oTextBoxInnerDiv = getChildOfType(oTextBoxMiddleDiv, "DIV", 0);
            if (oTextBoxInnerDiv)
            {
                var offsetHeight = oTextBoxInnerDiv.offsetHeight;
                var specifiedHeight = offsetHeight;
                if (oTextBoxMiddleDiv.style.height != "")
                {
                    specifiedHeight = parseFloat(oTextBoxMiddleDiv.style.height);
                }
                else if (oTextBoxOuterDiv.style.height != "")
                {
                    specifiedHeight = parseFloat(oTextBoxOuterDiv.style.height);
                }
                if (offsetHeight > specifiedHeight)
                {
                    var smallestFontSize = 200;
                    
                    var aParaChildren = getParaDescendants(oTextBoxInnerDiv);
                    var oneLine = false;
                    for (i = 0; i < aParaChildren.length; i++)
                    {
                        var oParagraphDiv = aParaChildren[i];
                        var lineHeight = elementLineHeight(oParagraphDiv);
                        oneLine = oneLine || (lineHeight * 1.5 >= specifiedHeight);
                        if (oParagraphDiv.nodeName == "DIV")
                        {
                            var fontSize = elementFontSize(oParagraphDiv);
                            smallestFontSize = Math.min( smallestFontSize, fontSize );
                            for (j = 0; j < oParagraphDiv.childNodes.length; j++)
                            {
                                var oSpan = oParagraphDiv.childNodes[j];
                                if ((oSpan.nodeName == "SPAN") || (oSpan.nodeName == "A"))
                                {
                                    fontSize = elementFontSize(oSpan);
                                    smallestFontSize = Math.min( smallestFontSize, fontSize );
                                }
                            }
                        }
                    }
                    var minimum = parseFloat(MINIMUM_FONT);
                    
                    var count = 0
                    while ((smallestFontSize > minimum) && (offsetHeight > specifiedHeight) && (count < 10))
                    {
                        ++ count;
                        if (oneLine)
                        {
                            var oldWidth = parseInt(oTextBoxOuterDiv.style.width);
                            oTextBoxInnerDiv.style.width =
                                "" + oldWidth * Math.pow(1.05, count) + "px";
                        }
                        else
                        {
                            var scale = Math.max(0.95, minimum / smallestFontSize);
                            
                            for (i = 0; i < aParaChildren.length; i++)
                            {
                                var oParagraphDiv = aParaChildren[i];
                                if (oParagraphDiv.nodeName == "DIV")
                                {
                                    var paraFontSize = elementFontSize(oParagraphDiv) * scale;
                                    var paraLineHeight = elementLineHeight(oParagraphDiv) * scale;
                                    for (j = 0; j < oParagraphDiv.childNodes.length; j++)
                                    {
                                        var oSpan = oParagraphDiv.childNodes[j];
                                        if ((oSpan.nodeName == "SPAN") || (oSpan.nodeName == "A"))
                                        {
                                            var spanFontSize = elementFontSize(oSpan) * scale;
                                            var spanLineHeight = elementLineHeight(oSpan) * scale;
                                            oSpan.style.fontSize = spanFontSize + UNITS;
                                            oSpan.style.lineHeight = spanLineHeight + UNITS;
                                            smallestFontSize = Math.min( smallestFontSize, spanFontSize );
                                        }
                                    }
                                    oParagraphDiv.style.fontSize = paraFontSize + UNITS;
                                    oParagraphDiv.style.lineHeight = paraLineHeight + UNITS;
                                    smallestFontSize = Math.min( smallestFontSize, paraFontSize );
                                }
                            }
                        }
                        
                        offsetHeight = oTextBoxInnerDiv.offsetHeight;
                    }
                }
            }
        }
    }
}


function elementLineHeight(element)
{
    var lineHeight = MINIMUM_FONT; 
    
    if (document.defaultView)
    {
        var computedStyle = document.defaultView.getComputedStyle(element, null);
        if (computedStyle)
        {
            lineHeight = computedStyle.getPropertyValue("line-height");
        }
    }
    else if (element.currentStyle)
    {
        lineHeight = element.currentStyle.lineHeight;
    }
    
    if ((UNITS.length == 0) && (lineHeight != MINIMUM_FONT))
    {
        UNITS = lineHeight.substring(lineHeight.length - 2, lineHeight.length)
    }
    
    return parseFloat(lineHeight);
}

function adjustLineHeightIfTooBig(idOfElement)
{
    var oTextBoxOuterDiv;
    var oTextBoxMiddleDiv;
    var oTextBoxInnerDiv;
    var oTextBoxOuterDiv = document.getElementById(idOfElement);
    
    if (oTextBoxOuterDiv)
    {
        oTextBoxMiddleDiv = getChildOfType(oTextBoxOuterDiv, "DIV", 0);
        if (oTextBoxMiddleDiv)
        {
            oTextBoxInnerDiv = getChildOfType(oTextBoxMiddleDiv, "DIV", 0);
            if (oTextBoxInnerDiv)
            {
                var offsetHeight = oTextBoxInnerDiv.offsetHeight;
                var specifiedHeight = offsetHeight;
                if (oTextBoxMiddleDiv.style.height != "")
                {
                    specifiedHeight = parseFloat(oTextBoxMiddleDiv.style.height);
                }
                else if (oTextBoxOuterDiv.style.height != "")
                {
                    specifiedHeight = parseFloat(oTextBoxOuterDiv.style.height);
                }
                if (offsetHeight > specifiedHeight)
                {
                    var adjusted = true;
                    var count = 0;
                    while ((adjusted) && (offsetHeight > specifiedHeight) && (count < 10))
                    {
                        adjusted = false;
                        ++ count;
                        
                        var aParaChildren = getParaDescendants(oTextBoxInnerDiv);
                        for (i = 0; i < aParaChildren.length; i++)
                        {
                            var oParagraphDiv = aParaChildren[i];
                            if (oParagraphDiv.nodeName == "DIV")
                            {
                                var fontSize = elementFontSize(oParagraphDiv);
                                var lineHeight = elementLineHeight(oParagraphDiv) * 0.95;
                                if (lineHeight >= (fontSize * 1.1))
                                {
                                    oParagraphDiv.style.lineHeight = lineHeight + UNITS;
                                    adjusted = true;
                                }
                                
                                
                                
                                for (j = 0; j < oParagraphDiv.childNodes.length; j++)
                                {
                                    var oSpan = oParagraphDiv.childNodes[j];
                                    if ((oSpan.nodeName == "SPAN") || (oSpan.nodeName == "A"))
                                    {
                                        var fontSize = elementFontSize(oSpan);
                                        var lineHeight = elementLineHeight(oSpan) * 0.95;
                                        if (lineHeight >= (fontSize * 1.1))
                                        {
                                            oSpan.style.lineHeight = lineHeight + UNITS;
                                            var adjusted = true;
                                        }
                                    }
                                }
                            }
                        }
                        
                        offsetHeight = oTextBoxInnerDiv.offsetHeight;
                    }
                }
            }
        }
    }
}

var windowsInternetExplorer = false;
var browserVersion = 0;
function detectBrowser()
{
    windowsInternetExplorer = false;
    var appVersion = navigator.appVersion;
    if ((appVersion.indexOf("MSIE") != -1) &&
        (appVersion.indexOf("Macintosh") == -1))
    {
        var temp = appVersion.split("MSIE");
        browserVersion = parseFloat(temp[1]);
        windowsInternetExplorer = true;
    }
}

var smallTransparentGif = "";
function fixupIEPNG(strImageID, transparentGif) 
{
    smallTransparentGif = transparentGif;
    if (windowsInternetExplorer && (browserVersion < 7))
    {
        var img = document.getElementById(strImageID);
        if (img)
        {
            var src = img.src;
            img.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "', sizingMethod='scale')";
            img.src = transparentGif;
            img.attachEvent("onpropertychange", imgPropertyChanged);
        }
    }
}

var inImgPropertyChanged = false;
function imgPropertyChanged()
{
    if ((window.event.propertyName == "src") && (! inImgPropertyChanged))
    {
        inImgPropertyChanged = true;
        var el = window.event.srcElement;
        if (el.src != smallTransparentGif)
        {
            el.filters.item(0).src = el.src;
            el.src = smallTransparentGif;
        }
        inImgPropertyChanged = false;
    }
}

function getChildOfType(oParent, sNodeName, requestedIndex)
{
    var childrenOfType = oParent.getElementsByTagName(sNodeName);
    return (requestedIndex < childrenOfType.length) ?
           childrenOfType.item(requestedIndex) : null;
}

function getParaDescendants(oAncestor)
{
    var oParaDescendants = new Array();
    var oPotentialParagraphs = oAncestor.getElementsByTagName('DIV');
    for (var iIndex=0; iIndex<oPotentialParagraphs.length; iIndex++)
    {
        var oNode = oPotentialParagraphs.item(iIndex);
        if (oNode.className.lastIndexOf('paragraph') != -1)
        {
            oParaDescendants.push(oNode);
        }
    }
    return oParaDescendants;
}

function onPageLoad()
{
    detectBrowser();
    adjustLineHeightIfTooBig("id1");
    adjustFontSizeIfTooBig("id1");
    adjustLineHeightIfTooBig("id2");
    adjustFontSizeIfTooBig("id2");
    adjustLineHeightIfTooBig("id6");
    adjustFontSizeIfTooBig("id6");
    adjustLineHeightIfTooBig("id8");
    adjustFontSizeIfTooBig("id8");
    adjustLineHeightIfTooBig("id29");
    adjustFontSizeIfTooBig("id29");
    adjustLineHeightIfTooBig("id41");
    adjustFontSizeIfTooBig("id41");
    adjustLineHeightIfTooBig("id42");
    adjustFontSizeIfTooBig("id42");
    adjustLineHeightIfTooBig("id43");
    adjustFontSizeIfTooBig("id43");
    adjustLineHeightIfTooBig("id44");
    adjustFontSizeIfTooBig("id44");
    adjustLineHeightIfTooBig("id151");
    adjustFontSizeIfTooBig("id151");
    adjustLineHeightIfTooBig("id177");
    adjustFontSizeIfTooBig("id177");
    adjustLineHeightIfTooBig("id198");
    adjustFontSizeIfTooBig("id198");
    adjustLineHeightIfTooBig("id209");
    adjustFontSizeIfTooBig("id209");
    adjustLineHeightIfTooBig("id217");
    adjustFontSizeIfTooBig("id217");
    adjustLineHeightIfTooBig("id224");
    adjustFontSizeIfTooBig("id224");
    adjustLineHeightIfTooBig("id226");
    adjustFontSizeIfTooBig("id226");
    adjustLineHeightIfTooBig("id231");
    adjustFontSizeIfTooBig("id231");
    adjustLineHeightIfTooBig("id232");
    adjustFontSizeIfTooBig("id232");
    adjustLineHeightIfTooBig("id233");
    adjustFontSizeIfTooBig("id233");
    adjustLineHeightIfTooBig("id234");
    adjustFontSizeIfTooBig("id234");
    fixupIEPNG("id3", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id4", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id5", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id7", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id9", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id10", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id11", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id12", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id13", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id14", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id15", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id16", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id17", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id18", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id19", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id20", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id21", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id22", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id23", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id24", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id25", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id26", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id27", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id28", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id30", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id31", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id32", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id33", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id34", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id35", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id36", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id37", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id38", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id39", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id40", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id45", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id46", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id47", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id48", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id49", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id50", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id51", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id52", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id53", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id54", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id55", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id56", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id57", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id58", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id59", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id60", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id61", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id62", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id63", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id64", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id65", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id66", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id67", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id68", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id69", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id70", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id71", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id72", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id73", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id74", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id75", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id76", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id77", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id78", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id79", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id80", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id81", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id82", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id83", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id84", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id85", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id86", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id87", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id88", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id89", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id90", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id91", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id92", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id93", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id94", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id95", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id96", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id97", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id98", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id99", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id100", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id101", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id102", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id103", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id104", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id105", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id106", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id107", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id108", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id109", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id110", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id111", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id112", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id113", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id114", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id115", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id116", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id117", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id118", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id119", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id120", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id121", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id122", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id123", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id124", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id125", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id126", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id127", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id128", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id129", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id130", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id131", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id132", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id133", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id134", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id135", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id136", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id137", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id138", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id139", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id140", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id141", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id142", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id143", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id144", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id145", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id146", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id147", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id148", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id149", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id150", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id152", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id153", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id154", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id155", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id156", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id157", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id158", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id159", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id160", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id161", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id162", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id163", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id164", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id165", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id166", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id167", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id168", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id169", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id170", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id171", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id172", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id173", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id174", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id175", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id176", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id178", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id179", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id180", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id181", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id182", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id183", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id184", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id185", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id186", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id187", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id188", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id189", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id190", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id191", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id192", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id193", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id194", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id195", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id196", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id197", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id199", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id200", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id201", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id202", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id203", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id204", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id205", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id206", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id207", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id208", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id210", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id211", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id212", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id213", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id214", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id215", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id216", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id218", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id219", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id220", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id221", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id222", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id223", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id225", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id227", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id228", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id229", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id230", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id235", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id236", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id237", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id238", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id239", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id240", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id241", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id242", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id243", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id244", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id245", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id246", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id247", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id248", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id249", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id250", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id251", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id252", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id253", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id254", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id255", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id256", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id257", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id258", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id259", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id260", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id261", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id262", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id263", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id264", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id265", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id266", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    fixupIEPNG("id267", "Lancaster-PA-Adventure-Guide-Magazine-links-you-to -the-best-place-to-play-shop-eat-and-stay-in-Lancaster-County-PA-Dutch-Lancaster Barnstormers-Amish-Farmland-PA-Dutch-Country-Coupons-Factory-Outlets- Dining-Attractions-FamilyFun_files/transparent.gif");
    return true;
}


