window.onload=function(){
if(!NiftyCheck())
    return;
Rounded("div#container","all","#f0f0f0","#fff","border #000000");
Rounded("div.boks_outer","all","white","#cccccc","");
Rounded("div.slika","bottom","white","#85abd7","");
//zagonVP();
fixH();
DodajSlike();
showIzjavo(); 
showIzjavo2();
PreloudiSlike();
}

var allPageTags = new Array(); 

function StClass(imeClass) {
//Populate the array with all the page tags
var ret = 0;
var allPageTags=document.getElementsByTagName("DIV");
//Cycle through the tags using a for loop
for (i=0; i<allPageTags.length; i++) {
//Pick out the tags with our class name
if (allPageTags[i].className==imeClass) {
//Manipulate this in whatever way you want
ret++;
}
}
return ret;
} 