$('document').ready(function() {
    $('div.entrypoint').hover(
        function() {    
            $(this).children('.entrypoint-hover').stop(false, true);
            $(this).children('.entrypoint-hover').fadeIn('fast');
            $(this).css('cursor', 'pointer');
            $(this).find('a').css('background', 'transparent url(fileadmin/v1/images/bg_secondary_nav_active_down.png) no-repeat scroll left top').css('color', '#CE0E15');
            $(this).find('span').css('color', '#CE0E15');
        },
        
        function() {
            $(this).children('.entrypoint-hover').stop(false, true);
            $(this).children('.entrypoint-hover').fadeOut('fast');
            $(this).css('cursor', 'auto');
            $(this).find('a').css('background', 'transparent url(fileadmin/v1/images/home/arrow_inactive.gif) no-repeat scroll left top').css('color', '#2D2D2D');
            $(this).find('span').css('color', '#2D2D2D');
        }
    );
    
    $('div.entrypoint').click(function() {
        window.location.href = $(this).find('a').attr('href');
    });
});

