// RIGHTCOLUMN
// Array of all Banner to be shown.
// For More Informations read the Notes below
var Banner = new Array (
'
Conformità sostenibile
', // Information insight
'',
/*
'Accesso alle informazioni
', // Information insight
'',
*/
// ORACLE ONE
'DISPONIBILE ON-LINE!
',
'',
// WEB SEMINAR
'Web seminar gratuiti
',
'',
// CONTACT
'Contattaci
',
'',
// EVENTS --> Event am 18.10.07 abgelaufen. Bei neuem Banner bestehende Grafik überschreiben. (teaser_events.jpg)
//'Oracle events
',
//'',
/* // CONOSCENZA
'Conoscenza e sicurezza
',
'',
*/
// CUSTOMERS
'Le opinioni dei clienti
',
'',
''
);
// HOME ONLY!!! WILL BE ADDED AT THE END OF RIGHTCOLUMN
var HomeBanner = new Array (
'' // Empty Entry
);
/************* NOTES **************************************
DONT CHANGE FIRST AND LAST LINE OF THESE ARRAYS!!!
Last Entry must be without "," at the end.
************************************************************/
/* DO NOT CHANGE EVERYTHING BELOW THIS LINE !!!
************************************************************/
// Hide static rightcolumn
document.getElementById('rightcolumn').style.display = "none";
// Build Right-Column
var banner = '';
for(b = 0; b < Banner.length; b++){
banner += Banner[b];
}
// Build special banners at the end of right column: Only for homepage
if(document.getElementById('rightcolumn').className == 'home' && HomeBanner.lenght != 0){
for(hb = 0; hb < HomeBanner.length; hb++){
banner += HomeBanner[hb];
}
}
// End of Righcolumn
banner += '
';
// Correct Imagepath: Only for homepage necessary
if(document.getElementById('rightcolumn').className == 'home'){
banner = banner.replace(/\.\.\//g, "");
}
document.write(banner);