﻿
var isIE = (navigator.userAgent.indexOf("MSIE") != -1) ? true : false ;
var theWidth = 0
var to = null

function move_left() {
	window.frames["thumbnail_frame"].document.getElementById('scroll').scrollLeft += -5
	to = setTimeout("move_left()", 10)
}
function move_right() {
	window.frames["thumbnail_frame"].document.getElementById('scroll').scrollLeft += 5
	to = setTimeout("move_right()", 10)
}

function over(obj) {
	obj.style.border = "3px white solid"
}
function out(obj) {
	obj.style.border = "3px gray solid"
}
function clicked(valueA, value, value2, value3, value4) {
		top.document.getElementById("main_image").innerHTML = "<img src='../images/" + valueA + "/images/" + value + "' alt='" + value2 + "' style='width:" + value3 + "px; height:" + value4 + "px; background-color:#dedede' />";
        while(value2.indexOf(" - ") != -1) {
                value2 = value2.replace(" - ", "<br/>")
        }
        top.document.getElementById("image_title").innerHTML = value2
}
function central() 
{
}
if (!isIE) 
{
	document.captureEvents(Event.MOUSEMOVE)
}

function title_image(value) 
{
	document.getElementById('image_title').innerHTML = value
}

function display_image(value, value2) 
{
	document.getElementById("main_image").src = value.replace("tnmn","")
	document.getElementById("main_image").alt = value2
}

