
function colorize(id,color) {
	if (is_nav4) {
		// alert("EZ VALAMI MAS");	
	} else if (is_gecko) {
		// alert("GECKO");
		document.getElementById(id).style.backgroundColor=color;
	}  else if (is_ie4up) {
		// alert("IE 4 UP");
		document.getElementById(id).style.backgroundColor=color;
	} else if (is_opera5) {
		// alert("OPERA 5");
		document.getElementById(id).style.backgroundColor=color;
	} else if (is_opera5up) {
		// alert("OPERA 6");
		document.getElementById(id).style.backgroundColor=color;
	} else {

	}
}
