rightClickWarning = "All images are copyrighted property of Twinfish Studios. All rights reserved. Unauthorized use is prohibited."


/* how fast do you want the filmstrip to move? */
filmstripMove = 0;

resizeLarge();

function resizeLarge() {
var url = window.location.href;

if (url.indexOf("/Small") + url.indexOf("/Medium") + url.indexOf("/Original") > -3) {
window.location.replace(url.substr(0, url.lastIndexOf("/")) + "/Large")
}
}


