/* 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=40;
i_top=650;
i_width=150;
i_fontColor="#ffffff";

// === 2 === WRITE THE STYLE
document.write("<style>.iInfoBar{font-family:Arial, Helvetica, sans-serif;font-size:12px;color:#ffffff}</style>");

// === 3 === THE CONTENT (HTML tags can be used)
i_content=[
'Web enabled custom software development.',
'Established to provide all the Ceyline services to clients throughout the Middle East Region.',
'Any description here...',
'This is the description for link number 4!',
'And so on...'
];

// 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 id=i_'+i_i+' style=visibility:hidden;width:'+i_width+'px;position:absolute;top:'+i_top+'px;left:'+i_left+'px class=iInfoBar>'+i_content[i_i-1]+'</div>')