/* 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=300;
i_top=462;
i_width=250;

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

// === 3 === THE CONTENT (HTML tags can be used)
i_content=[
'Keer terug naar <br> de begin pagina',
'Hier vind u alles <br> over ons bedrijf',
'Stamboekfokkerij',
'Aanbod: Fokvee',
'Aanbod: Embryos',
'Aanbod: Sperma',
'Aanbod: Vlees',
'Bed & Breakfast',
'Het laatste nieuws <br> over Erve Wiecherdinck',
'Onze fotogallerie',
'Contact informatie',
'Links',
'Franse Hangoren',
'Blonde d`Aquitaine'
];

// 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>')