function hot (that, www, file) {

	if (that.className != 'active') {
		if (that.childNodes[0].childNodes[0].src == www + 'images/spacer.png') { // IE
			that.childNodes[0].childNodes[0].style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src="' + file + '")';
		}
		else {
			that.childNodes[0].childNodes[0].src = file;
		}
	}

}

function cold (that, www, file) {
	if (that.className != 'active') {
		if (that.childNodes[0].childNodes[0].src == www + 'images/spacer.png') { // IE
			that.childNodes[0].childNodes[0].style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src="' + file + '")';
		}
		else {
			that.childNodes[0].childNodes[0].src = file;
		}
		
	}
}

function hot_lang (that, www, file) {

	if (that.className != 'active') {
		if (that.childNodes[0].src == www + 'images/spacer.png') { // IE
			that.childNodes[0].style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src="' + file + '")';
		}
		else {
			that.childNodes[0].src = file;
		}
	}

}

function cold_lang (that, www, file) {
	if (that.className != 'active') {
		if (that.childNodes[0].src == www + 'images/spacer.png') { // IE
			that.childNodes[0].style.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src="' + file + '")';
		}
		else {
			that.childNodes[0].src = file;
		}
		
	}
}
var centis_old_onload = window.onload;
window.onload = function ()
{
    if (typeof centis_old_onload == 'function')
    {
         centis_old_onload();
    }
    var searchForm = document.getElementById('searchForm');
    if(searchForm)
    {
        var ie6 = /msie|MSIE 6/.test(navigator.userAgent);
        searchForm.onclick = function ()
        {
            this.className = '';
            this.onclick = null;
            if(ie6)
            {
                this.onmouseout = this.onmouseover = null;
            }
        }
        if(ie6)
        {
            searchForm.onmouseover = function ()
            {
                this.className = 'clickableHover';
            }
            searchForm.onmouseout = function ()
            {
                this.className = 'clickable';
            }
        }
    }
}