home *** CD-ROM | disk | FTP | other *** search
- document.observe('dom:loaded', function() {
- if ( $('div_license').innerHTML == 'Vollversion' || $('div_license').innerHTML == 'Film' || $('div_license').innerHTML == 'eBook' ) {
- if ( $('btn_relating') ) {
- $('btn_relating').style.display = 'none';
- }
- } else {
- if( $('developer') ) {
- $('developer').style.display = 'none';
- } else {
- return
- }
- }
-
- if ($('div_license').innerHTML == 'eBook') {
- if ( $$('.operationItemInstallBTN') ) {
- $$('.operationItemInstallBTN').each ( function ( elmt ) {
- elmt.removeClassName('operationItemInstallBTN');
- elmt.addClassName( 'operationItemReadBTN' );
- elmt.innerHTML = 'Lesen';
- });
- }
- }
-
- if ($('div_license').innerHTML == 'PDF') {
- if ( $$('.operationItemInstallBTN') ) {
- $$('.operationItemInstallBTN').each ( function ( elmt ) {
- elmt.removeClassName('operationItemInstallBTN');
- elmt.addClassName( 'operationItemReadBTN' );
- elmt.innerHTML = 'Lesen';
- });
- }
- }
-
- if ($('div_license').innerHTML == 'Film') {
- if ( $$('.operationItemInstallBTN') ) {
- $$('.operationItemInstallBTN').each ( function ( elmt ) {
- elmt.removeClassName('operationItemInstallBTN');
- elmt.addClassName( 'operationItemPlayBTN' );
- elmt.innerHTML = 'Starten';
- });
- }
- }
-
- $$('.shortText').each( function ( elmt ) {
-
- text = elmt.innerHTML;
- if ( text.length > 34 ) {
- elmt.innerHTML = text.substring(0,30)+'...';
- }
-
- }
- );
- });