// <![CDATA[

( function( $ )
{
    
    function subscribe()
    {
        $( '#subscribe a' ).fancybox( {
            hideOnContentClick : false,
            width               : 340,
            height              : 450,
            autoScale           : false,
            transitionIn        : 'none',
            transitionOut       : 'none',
            type                : 'iframe'
        } );
    }
    
    $( document ).ready( subscribe );
    
    function fittedBox()
    {
        $teasers = $( '.teaser-home, .teaser-content' );
        
        if( !$teasers.length )
        {
            return;
        }
        
        $teasers.fitted();
        
        var location = ( new String( window.location ) );
        
        if( !location.indexOf( 'http://www.ggba-switzerland.ch/fr/' ) )
        {
            $( '#c4, #c11, #c59, #c12' ).find( '.teaser-home-text p' ).append( '<br /><br />' );
        }
        else if( !location.indexOf( 'http://www.ggba-switzerland.ch/de/' ) )
        {
            $( '#c4' ).find( 'h2' ).append( '<br /><br />' ).closest( '#c4' )
                      .find( '.teaser-home-text p' ).append( '<br /><br />' );

            $( '#c10' ).find( 'h2' ).append( '<br /><br />' ).closest( '#c10' )
                       .find( '.teaser-home-text p' ).append( '<br />' );

            $( '#c11, #c12' ).find( 'h2' ).append( '<br /><br />' );
        }
        else
        {
            $( '#c11, #c59, #c12' ).find( '.teaser-home-text p' ).append( '<br /><br />' );
        }
    }
    
    $( document ).ready( fittedBox );

    function homeSlider()
    {
        $( '#slider' ).s3Slider( {
            timeOut: 3000
        } );
    }
    
    $( document ).ready( homeSlider );
    
} )( jQuery );

// ]]>