function przycisk(podstawowy, wskazany, klikniety, tekst){  if (document.images)  
{   
 	this.name = "img" + przyciski.length;    
		if (podstawowy) { this.normal = new Image(); this.normal.src = podstawowy }    
		if (wskazany) { this.over = new Image(); this.over.src = wskazany }    
		if (klikniety) { this.down = new Image(); this.down.src = klikniety }  
}  
		if (tekst) this.opis = tekst;
  this.normalizuj = normalizuj;  this.podswietl = podswietl;  this.kliknij = kliknij;
  return this;        
function normalizuj() 
{ 
if (document.images) document.images[this.name].src = this.normal.src; window.status = "" }  
function podswietl() 
{ 
		if (document.images && this.over) document.images[this.name].src = this.over.src; 
		if (this.opis) window.status = this.opis }  function kliknij() 
{ if (document.images) document.images[this.name].src = this.down.src }}

przyciski = new Array("");if (document.images)
{
przyciski[1] = new przycisk("images/start1.jpg", "images/start2.jpg");
przyciski[2] = new przycisk("images/oferta1.jpg", "images/oferta2.jpg");
przyciski[3] = new przycisk("images/lokalizacja1.jpg", "images/lokalizacja2.jpg");
przyciski[4] = new przycisk("images/kontakt1.jpg", "images/kontakt2.jpg");
}