var PreloadFlag = false;
var baseURL = 'http://www.mishpics.com/images/';
if (document.images) {
	otherTrailer = new Image(); otherTrailer.src = baseURL + "otherTrailer-on.jpg";
	PreloadFlag = true;
}
function changeImg(state) {
    if (document.images && PreloadFlag) {
        document['otherTrailer'].src = baseURL + 'otherTrailer' + state + '.jpg';
    }
}

