// ******************************
// **                          **
// **        xom`s lazy        **
// **                          **
// ** javascript image deborder**
// **  (c) Tom Hnatovsky 2006  **
// **       www.xomax.cz       **
// **                          **
// ******************************


// ----------- Global variables ------------ //

var isIE=(document.all && !window.opera)?true:false;
var isOpera=(navigator.userAgent.indexOf("Opera")!=-1)?true:false;


// ----------- Settings ------------ //
var settings = new Array;


// ----------- xbo Functions ------------ //
function SetIT () {
	var a = document.getElementsByTagName("img");
	for (var i=0;i<a.length;i++){
		if (a[i].height < 10) {
			a[i].style.border = '0';
		}
	}
}

// ----------- xbo Activation ------------ //
if (isIE) {window.attachEvent('onload',SetIT);}else {window.addEventListener('load',SetIT, false);}