addLoadEvent(Init);

function Init() {
   sifrReplace();
  // overMenu.init();
}

function sifrReplace() {
   var doc_body_c = document.getElementsByTagName('body')[0].id;
   
   if     (doc_body_c=='hledej')       {sIFR_color = '#81cf04'; }
   else if(doc_body_c == 'naslouchej') {sIFR_color = '#fba81a'; }
   else if(doc_body_c == 'nabizej')    {sIFR_color = '#296989'; }
   else if(doc_body_c == 'komunikuj')  {sIFR_color = '#e31919'; }
   else if(doc_body_c == 'podnikej')   {sIFR_color = '#e0b02f'; }
   else if(doc_body_c == 'cestuj')     {sIFR_color = '#761871'; }
   else if(doc_body_c == 'oprojektu')     {sIFR_color = '#36a6d5'; }
   else                                { sIFR_color = '#36a6d5'; }
   
   if(typeof sIFR == "function") {
      sIFR.replaceElement("#content h1", "/flash/bubbleboy_cz.swf", sIFR_color, null, null, null, null, null, null, null, null );
      sIFR.replaceElement("#content h2", "/flash/bubbleboy_cz.swf", sIFR_color, null, null, null, null, null, null, null, null );
      sIFR.replaceElement("#sidebar h3", "/flash/bubbleboy_cz.swf", sIFR_color, null, null, null, null, null, null, null, null );
      sIFR.replaceElement(".up", "/flash/bubbleboy_cz.swf", sIFR_color, null, null, null, null, null, null, null, null );
   }
}

var overMenu = {
   menu_box : 'menu',
   init : function() {
      menu = getElem(this.menu_box);
      if(!menu) return;
      
      imgs = menu.getElementsByTagName('img');
      if(!imgs) return;
     
   	for (i=0; i<imgs.length; i++) {
   	  //alert(imgs[i].parentNode.parentNode.className);
   	  //if(imgs[i].parentNode.parentNode.className.indexOf('active')) return; // zamezeni provadeni na aktivni polozce
   	  
 			imgs[i].onmouseover = function()	{
 			  alert(this.src);
 			  //this.src = '';
           this.src.replace('inactive','active');
           alert(this.src);
         }
  			imgs[i].onmouseout = function() { 
 			  this.src.replace('active','inactive');
         }
   	}
   }
}

