/***************************************************/
/* construct
/***************************************************/
function construct( cssname  )
{
    showEyecatcher( cssname );
    setMetaNavDownState( );
    initSlider( ); 
}

/***************************************************/
/* show / hide eyecatcher
/***************************************************/
function showEyecatcher( cssname )
{
    if( cssname ) 
    {
        // show eyecatcher
        jQuery( '#eyecatcher' ).css(
        {
           'background': 'url( images/content/eyecatcher/img_'+cssname+'.jpg ) no-repeat left top'
        } );
    } else {
         jQuery( '#eyecatcher' ).css(
         {
           'background': 'url( images/content/eyecatcher/default.jpg ) no-repeat left top'
         } );
    }
}

/***************************************************/
/* set language down state
/***************************************************/
function setMetaNavDownState(  )
{
    // for metanavigation
    var urlAlias = document.URL.split("/")[3];
    if( urlAlias == 'home' || urlAlias == 'homepage' || urlAlias == 'index.php?setLang=1' || urlAlias == 'index.php?setLang=2' )
        jQuery( '.home').css( {'color': '#FF0016'} );

    if( urlAlias == 'kontakt' || urlAlias == 'contactform' )
        jQuery( '.contact').css( {'color': '#FF0016'} );

     if( urlAlias == 'lageplan' || urlAlias == 'map' )
        jQuery( '.map').css( {'color': '#FF0016'} );

    if( urlAlias == 'suchen' || urlAlias == 'search' )
        jQuery( '.search').css( {'color': '#FF0016'} );

    if( urlAlias == 'de_sitemap' || urlAlias == 'en_sitemap' )
          jQuery( '.sitemap').css( {'color': '#FF0016'} );

    if( urlAlias == 'impressum' || urlAlias == 'imprint' )
          jQuery( '.imprint').css( {'color': '#FF0016'} );

    // for language
    if( jQuery( '#header_right' ).hasClass( 'en' ) )
    {
        jQuery( '#link_en').css( {'color': '#FF0016'} );
    } else {
        jQuery( '#link_de').css( {'color': '#FF0016'} );
    }
}


/***************************************************/
/* slide home box
/***************************************************/
function initSlider(  )
{
   jQuery('#box_top_slider')
        .cycle(
        {
            fx:     'scrollRight',
        speed:  'slow',
        timeout: 4000  
            
        });
}
 
