function openGalery(id,kepid){
    window.open("/matrahaza/jsp/gallery/gallery.jsp?id="+id+"&kepid="+kepid,"","resizable=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,fullscreen=no,dependent=no,width=600,height=700");
}
var picturelist = new Array();
var pictureIndex = -1;
function rotate_main(){
    if(picturelist.length==0) return;    
    pictureIndex+=1;
   
    if(pictureIndex==picturelist.length) pictureIndex=0;
    document.getElementById("first_row").style.backgroundImage = "url('"+picturelist[pictureIndex]+"')";    
}
