function textShift()
{
var array = document.getElementsByTagName("div");
var image = document.getElementsByTagName("img");

//boolean flip = false;

// This gives me back an array of all the div tags on this page.  I can make every div on the page red like so

//if (flip = false) {
for( a in array )
{
    if(array[a].style)
    {
        //array[a].style.backgroundColor = "#000";
        array[a].style.fontSize = "10px";

    }
}

for( a in image )
{
    if(image[a].style)
    {
        //array[a].style.backgroundColor = "#000";
        image[a].style.width = "199px";
        image[a].style.height = "227px";


    }
}

//flip =! flip;



//image.width = "199px";
//image.height = "227px";


}