function viceviDivovi() {
	// @author: Ivan Dilber (aka ivanhoe)
	var gHeightA=0, gHeightB = 0;
	$('#vicevi .vic').each( function() {
		var box = $(this);
	//	alert('gHeightA'+gHeightA);
//		alert('gHeightB'+gHeightB);
//		alert("height:"  +":"+ box.height());
//		alert("left:" + box.css('clear','left').height());
		if(gHeightA > gHeightB){
      box.addClass('right'); 
      box.css('clear','right')
      gHeightB += box.height(); 
    }
		else
		{ gHeightA += box.css('clear','left').height(); }
	});
}