/* 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=25;
i_top=70;
i_width=45;

// === 2 === WRITE THE STYLE
document.write("<style>.iInfoBar{z-index: 3; font-family:verdana,arial,sans-serif;font-size:14px;color:#000000;margin-top:10px;}</style>");

// === 3 === THE CONTENT (HTML tags can be used)
i_content=[
'My site for work: Web App Development, Audio Production, Voice-Over, etc.',
'Music and Art',
'Here are ye family album and other stuff',
'Questions? ...you can contact me here'
];

// 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 align=center id=i_'+i_i+' style=visibility:hidden;width:'+i_width+'%;position:absolute;top:'+i_top+'%;left:'+i_left+'%; class=iInfoBar>'+i_content[i_i-1]+'</div>')