/**
 * 
 */

var initializeStartpage = function()
{
    $('#wgu-startpage-imagemap-top').mouseover(function(){
        $('.arrow').addClass('wgu-hidden');
        $('#wgu-startpage-note').removeClass('wgu-startpage-note-below').addClass('wgu-startpage-note-normal');
        $('#arrow1').removeClass('wgu-hidden');
        $('#wgu-startpage-text').html($('#vermietung').html());
    });
    $('#wgu-startpage-imagemap-middle').mouseover(function(){
        $('.arrow').addClass('wgu-hidden');
        $('#wgu-startpage-note').removeClass('wgu-startpage-note-below').addClass('wgu-startpage-note-normal');
        $('#arrow2').removeClass('wgu-hidden');
        $('#wgu-startpage-text').html($('#service').html());
    });
    $('#wgu-startpage-imagemap-bottom').mouseover(function(){
        $('.arrow').addClass('wgu-hidden');
        $('#wgu-startpage-note').removeClass('wgu-startpage-note-below').addClass('wgu-startpage-note-normal');
        $('#arrow3').removeClass('wgu-hidden');
        $('#wgu-startpage-text').html($('#unsereUnion').html());
    });
    $('#wgu-startpage-imagemap-below').mouseover(function(){
        $('.arrow').addClass('wgu-hidden');
        $('#wgu-startpage-note').addClass('wgu-startpage-note-below').removeClass('wgu-startpage-note-normal');
        $('#arrow4').removeClass('wgu-hidden');
        $('#wgu-startpage-text').html($('#urlaubUndMehr').html());
    });
};

