var active = 'o_nas';
function change(x,y) 
{
   var menu = document.getElementById(x);
   var desc = document.getElementById(x+'_desc'); 
   
   if(y == 1) 
   { 
      if(active) 
      {
      	document.getElementById(active+'_desc').className = 'hid';
      	document.getElementById(active).src = 'img/m_'+active+'_a.jpg';
      	if(active == 'nasze_produkcje') hide_film();
      }
      active = x; 
      menu.src = 'img/m_'+x+'.jpg';
      desc.className = 'show';
   
   }
   if(y == 0 && x != active)
   { 
      menu.src = 'img/m_'+x+'_a.jpg';
      desc.className = 'hid'; 
   } 
} 


function show_foto(x) 
{
   var foto_box = document.getElementById('b_f'); 
   var foto_file = document.getElementById('b_foto'); 	
   
   foto_box.className = "show";
   foto_file.src = "foto/"+x+".jpg";
} 
function hide_foto(x) 
{
   var foto_box = document.getElementById('b_f');			
   foto_box.className = "hid";	 
   
   var foto_file = document.getElementById('b_foto'); 
   foto_file.src = "img/arrow_dn.gif";

}

function show_middlefoto(x) 
{
   var foto_box = document.getElementById('mid_f'); 
   var foto_file = document.getElementById('mid_foto'); 	
   
   foto_box.className = "show";
   foto_file.src = "foto/geby/middle/"+x+".jpg";
} 
function hide_middlefoto(x) 
{
   var foto_box = document.getElementById('mid_f');			
   foto_box.className = "hid";	 
   
   var foto_file = document.getElementById('mid_foto'); 
   foto_file.src = "img/arrow_dn.gif";

}
function show_middlefoto_prawdziwe(x) 
{
   var foto_box = document.getElementById('mid_f_prawdziwe'); 
   var foto_file = document.getElementById('mid_foto_prawdziwe'); 	
   
   foto_box.className = "show";
   foto_file.src = "foto/prawdziwe/middle/"+x+".png";
} 
function hide_middlefoto_prawdziwe(x) 
{
   var foto_box = document.getElementById('mid_f_prawdziwe');			
   foto_box.className = "hid";	 
   
   var foto_file = document.getElementById('mid_foto_prawdziwe'); 
   foto_file.src = "img/arrow_dn.gif";

}
function show_film() 
{
   var x = 'b_film1';
   var film_box = document.getElementById(x); 			
   film_box.className = "show"; 
} 
function hide_film() 
{
   var x = 'b_film1';
   var film_box = document.getElementById(x); 			
   film_box.className = "hid";	 	
}

function hide_fotos() 
{
   var fotos_box = document.getElementById('fotos');			
   fotos_box.className = "hid";	 

}
function show_fotos()
{
   var x = 'fotos';
   var fotos_box = document.getElementById(x); 			
   fotos_box.className = "show";
}

function hide_geby() 
{
   var geby_box = document.getElementById('geby_f');			
   geby_box.className = "hid";	 

}
function show_geby()
{
   var x = 'geby_f';
   var geby_box = document.getElementById(x); 			
   geby_box.className = "show";
}
function hide_prawdziwe() 
{
   var prawdziwe_box = document.getElementById('pr_od');			
   prawdziwe_box.className = "hid";	 

}
function show_prawdziwe()
{
   var x = 'pr_od';
   var prawdziwe_box = document.getElementById(x); 			
   prawdziwe_box.className = "show";
}
function show_referencje()
{
  var x = 'ref';
  var fotos_box = document.getElementById(x); 			
  fotos_box.className = "show";
}
function hide_referencje()
{
    var fotos_box = document.getElementById('ref');			
   fotos_box.className = "hid";
}

function show_d3d()
{
  var x = 'd3d';
  var fotos_box = document.getElementById(x); 			
  fotos_box.className = "show";
}
function hide_d3d()
{
    var fotos_box = document.getElementById('d3d');			
   fotos_box.className = "hid";
}
function close_klaps() 
{
   document.getElementById('klaps_container').className='hid';
}