|
|
|
// RIGHTCOLUMN
// Array of all Banner to be shown.
// For More Informations read the Notes below
var Banner = new Array (
'Contacto', // CONTACT
'',
// Information insight
'Cumplimiento sostenible',
'',
/* Information insight
'Descripción del Contenido',
'',
*/
// TEASER ONE
'CATÁLOGO ONE',
'',
// EVENTOS
'EVENTOS y SEMINARIOS',
'',
// CUSTOMERS
'Casos de Éxito de Clientes',
''
);
// 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); |
 |
|
|