 window.addEvent('domready', function(){
    new SexyLightBox(); /* Por defecto, el color es negro */
    new SexyLightBox({find:'sexyblanquito', color:'white'});
  });

  
//upoštevaj vrednosti v URLju klica strani:  
  var hash1 = window.location.hash;
  var hash2=hash1.substr(1);
if (hash2=='') hash2="podatki";
  jQuery.ajax({
  url: "vsebina/"+hash2+".html",
  cache: false,
  //prikazi en div
  success: function(html){
    jQuery("#vsebina").empty();
	jQuery("#vsebina").append(html);
  // skrij ta div
  }
});

  
//prikaži stran v #vsebina
 function prikazi (url1, div1) {
//var url1;

document.write('<div id="'+div1+'"></div>');
// if (location.hash!=null) url1=location.hash;
 jQuery.ajax({
  url: url1,
  cache: false,
  //prikazi en div
  success: function(html){
    jQuery("#"+div1).empty();
	jQuery("#"+div1).append(html);
  // skrij ta div
  }
});
 return false;
 }
  
   function prikazi2 () {
//var url1;
// if (location.hash!=null) url1=location.hash;
 jQuery.ajax({
  url: "vsebina/podatki.html",
  cache: false,
  //prikazi en div
  success: function(html){
    jQuery("#vsebina").empty();
	jQuery("#vsebina").append(html);
  // skrij ta div
  }
});
 return false;
 }

 function td_slika (file, opis) {
	document.write('<td  valign=top><table cellspacing=0 cellpadding=10 style="border:1px solid" bordercolor=black><tr><td align=center><a href="_slike/'+file+'" rel="sexylightbox[group1]" title="'+opis+'"><img border=0 src="_slike/thumb/_'+file+'" width=230><br><font size=-1 face=Georgia color=#660033 style="font-weight: normal">'+opis+'</font></a></td></tr></table></td>');
			};

function prevod(iz_jezik, v_jezik) {
document.write('<a href="http://translate.google.com/translate?u='+location.href+'&hl='+v_jezik+'&ie=UTF-8&sl='+iz_jezik+'&tl='+v_jezik+'" >');
			};
			