/* DIV dla rysunku */
divLogoMale = document.createElement("div");
divLogoMale.className = "logoMale";
divLogoMale.id = "divLogoMale";
miejsceDivLogoMale = document.getElementById("menu");
miejsceDivLogoMale.appendChild(divLogoMale);

/* Kotwica do Logo */
aLogoMale = document.createElement("a");
aLogoMale.href = "kontakt.html"
aLogoMale.id = "aLogoMale"
miejsceKotwicyLogoMale = document.getElementById("divLogoMale");
miejsceKotwicyLogoMale.appendChild(aLogoMale);

/* Rysunek małego Logo */
imgLogoMale = document.createElement("img");
imgLogoMale.className = "logoMale";
imgLogoMale.src = "grafika/3bird-logo-small.png";
imgLogoMale.id = "rysLogoMale";
imgLogoMale.alt = "Logo 3bird";
miejsceimgLogoMale = document.getElementById("aLogoMale");
miejsceimgLogoMale.appendChild(imgLogoMale);

/* ====================================================
(c) Copyright by Robert Surma 2005.
All Rights Reserved. No part of this publication may be reproduced,
stored in a retrieval system, or transmitted, in any form or by any means,
electronic, mechanical, photocopying, recording or otherwise,
without the permission of Robert Surma, 3bird Projects Co.
Contact: 3bird.net
===================================================== */