$(document).ready(
    function(){
        $('ul#welcomefade').innerfade({
            speed: 2000,
            timeout: 5000,
            type: 'sequence',
            containerheight: '533px'
        });
        
        $('.fade').innerfade({
            speed: 1000,
            timeout: 6000,
            type: 'random_start',
            containerheight: '1.5em'
        });
        
        $('div#topHello p')
            .hide()
            .delay(1000)
            .fadeIn(2000)
                .animate({
                    'width': '230px',
                    'height': '500px'},1000)
                .html('<p><strong>Welcome to Hotel Bayernland<br>Willkommen im Hotel Bayernland<\/strong><br><br><br>Please choose language<br>Bitte Sprache waehlen<\/p>')
                .addClass('visible');
});
