	window.onload=function()
	  {
		PreSimpleSwapOnload(); SimpleSwapSetup();
		
		var myTips = new Tips($$('.toolTipImg'), {
		timeOut: 10,
		maxTitleChars: 50,
		maxOpacity: .9,
		onShow: function(el){
            el = new Fx.Style(el, 'opacity', {duration:150, fps:50});
			el.start(0,1);
		},
		onHide: function(el){
            el = new Fx.Style(el, 'opacity', {duration:150, fps:50});
			el.start(1,0);
  		},
  		showDelay : 50,
  		hideDelay : 10
 	});
	
	}
function changeFond(fond)
{
  resetAllIcos();
  var icoImage = document.getElementById(fond);
  icoImage.src = "img2/novo/" + fond + "_a.gif";
  icoImage.onmouseout = new Function("active_button('" + fond + "')");
  icoImage.onmouseover = new Function("active_button('" + fond + "')");
  //icoImage.onmouseover = active_button(fond);
  //icoImage.onclick = active_button(fond);
}


function over_button(fond) {
  if (document.images) {
  var icoImage = document.getElementById(fond);
    icoImage.src = "img2/novo/" + fond +"_h.gif"
  }
}

function out_button(fond) {
  if (document.images) {
  var icoImage = document.getElementById(fond);
    icoImage.src = "img2/novo/" + fond +".gif"
  }
}

function active_button(fond) {
  if (document.images) {
  var icoImage = document.getElementById(fond);
    icoImage.src = "img2/novo/" + fond +"_a.gif"
  }
}


function resetAllIcos()
{
  document.getElementById("pbz_novcani").src = "img2/novo/pbz_novcani.gif";
  document.getElementById("pbz_novcani").onmouseout = new Function("out_button('pbz_novcani')");
  
  //document.getElementById("pbz_kunski_novcani").src = "img2/pbz_kunski_novcani.gif";
  //document.getElementById("pbz_kunski_novcani").onmouseout = new Function("out_button('pbz_kunski_novcani')");
  
  document.getElementById("pbz_euro_novcani").src = "img2/novo/pbz_euro_novcani.gif";
  document.getElementById("pbz_euro_novcani").onmouseout = new Function("out_button('pbz_euro_novcani')");
  
  document.getElementById("pbz_dollar").src = "img2/novo/pbz_dollar.gif";
  document.getElementById("pbz_dollar").onmouseout = new Function("out_button('pbz_dollar')");
  
  document.getElementById("pbz_bond").src = "img2/novo/pbz_bond.gif";
  document.getElementById("pbz_bond").onmouseout = new Function("out_button('pbz_bond')");
  
  document.getElementById("pbz_global").src = "img2/novo/pbz_global.gif";
  document.getElementById("pbz_global").onmouseout = new Function("out_button('pbz_global')");
  
  document.getElementById("pbz_equity").src = "img2/novo/pbz_equity.gif";
  document.getElementById("pbz_equity").onmouseout = new Function("out_button('pbz_equity')");
  
  document.getElementById("pbz_istock").src = "img2/novo/pbz_istock.gif";
  document.getElementById("pbz_istock").onmouseout = new Function("out_button('pbz_istock')");
}


