function onmyLoad(){
var divs = document.getElementById('news').getElementsByTagName('div');
	for (var i = 0; i< divs.length; i++) {
		if(divs[i].id != null && divs[i].id != ''){
			divs[i].onclick = function (){
				tv = this.getAttribute("id");
				window.location="novice/novica.php?id="+tv;
			}
		}
	} 
}

