﻿// JScript File

window.addEvent('domready', function(){
		var myMenu = new ImageMenu($$('#kwick2 .kwick2'),{openWidth:60, onClick:openThumbs});
		Lightbox.init({showControls: true});
	});
	
function show(id,x,y,tf) {
    if (tf == true) {
    id.style.display = "block"
    id.style.left = x + "px"
    id.style.top = y + "px"
    }
    if (tf == false) {
    id.style.display = "none"
    }
}


function doClear(theText) 
{
     if (theText.value == theText.defaultValue)
     {
         theText.value = ""
     }
}


