﻿function repositionQuote()
{
    var quote = document.getElementById("quote");
    var container = document.getElementById("slideshow");
    
    quote.style.top = Math.round((container.offsetHeight - quote.offsetHeight) / 2) - 20 + "px";
}
