/* USE WORDWRAP AND MAXIMIZE THE WINDOW TO SEE THIS FILE
========================================
 InfoBar v1.0
 License : Freeware (Enjoy it!)
 (c)2003 VASIL DINKOV- PLOVDIV, BULGARIA
========================================
 For IE4+, NS4+, Opera4+ & Konqueror2+
========================================
 Get the InfoBar script at:
 http://www.smartmenus.org/other.php
 and don't wait to get the Great SmartMenus script at:
 http://www.smartmenus.org
 LEAVE THESE NOTES PLEASE - delete the comments if you want */

// BUG in Opera:
// If you want to be able to control the body margins
// put the script right after the BODY tag, not in the HEAD!!!

// === 1 === DEFINING THE BOX
i_left=0;
i_top=0;
i_width=600;
i_height=30;

// === 2 === WRITE THE STYLE
document.write("<style>.iInfoBar{	font-size : 11px;color : black;	font-family : Tahoma, Verdana, Geneva, sans-serif;padding-top:0px;font-style : italic;font-weight : normal;}</style>");

// === 3 === THE CONTENT (HTML tags can be used)
i_content=[
'Co znajdziecie w aktualnym numerze Wiadomości Krajeńskich',
'Archiwalne numery Wiadomości Krajeńskich',
'Zareklamuj się w naszej gazecie',
'Ogłoszenia drobne zamieszczane na łamach naszej gazety',
'Jak się skontaktować z nami',
'Ankiety przeprowadzane na stronie Wiadomości Krajeńskich'
];

// THE SERIOUS SCRIPT - PLEASE DO NOT TOUCH
function i_getOS(a){return document.all?document.all[a].style:document.layers?document.layers[a]:document.getElementById?document.getElementById(a).style:0};function i_show(a){var o=i_getOS(a);if(!o)return;o.visibility=document.layers?'show':'visible'};function i_hide(a){var o=i_getOS(a);if(!o)return;o.visibility=document.layers?'hide':'hidden'};for(i_i=0;i_i<=i_content.length;i_i++)if(document.layers)document.write('<layer id=i_'+i_i+' width='+i_width+' top='+i_top+' left='+i_left+' visibility=hide><span class=iInfoBar>'+i_content[i_i-1]+'</span></layer>');else if(document.all||document.getElementById)document.write('<div style=width:'+i_width+'px;height:'+i_height+'px;position:absolute;><div id=i_'+i_i+' style=visibility:hidden;width:'+i_width+'px; height:'+i_height+'px;position:absolute;top:'+i_top+'px;left:'+i_left+'px class=iInfoBar>'+i_content[i_i-1]+'</div></div>')