$(function(){
    sureQuestions();
    activateQuestions();
    $('.home .rightside .boxmenu .wrap div').hover(function(){
        if(this.className != 'activebutton'){
            $('.home .rightside .boxmenu .wrap div.activebutton')[0].className = 'button';
            $('.home .rightside .box div').fadeOut(10);
            this.className = 'activebutton';
            tempclass = this.id.split('m');
            $('#box'+tempclass[1]).fadeIn(10);
        }
    });
//    $('.home .rightside .boxmenu .wrap #boxm1').click(function(){location.href = path_name + '?area=aboutus'});
//    $('.home .rightside .boxmenu .wrap #boxm2').click(function(){location.href = path_name + '?area=investmentfocus'});
//    $('.home .rightside .boxmenu .wrap #boxm3').click(function(){location.href = path_name + '?area=portfolio'});
    $('#login').click(function(e){
        e.preventDefault();
        $.get('php/ajax/login.php', function(data){
            openPopup(data);
        })
    });
    $('.greyout').click(function(){$('.greyout').css('display', 'none');$('.popup .wrap').css('display', 'none');});
});

function openPopup(popuphtml){
    closeTag = '<div class="close">x</div>';
    $('.popup .wrap').css('display', 'block').html(closeTag + popuphtml);
    $('.greyout').css('display', 'block');
    $('.popup .wrap .close').click(function(){$('.greyout').css('display', 'none');$('.popup .wrap').css('display', 'none');});
}

function sureQuestions(){
    $('.sure').click(function(e){
        if( !confirm('Bist du dir sicher?') ) e.preventDefault();;
    });
}
function activateQuestions(){
    $('.activateacc').click(function(e){
        e.preventDefault();
        alert('Aktiviere zuerst deinen Account mit dem Link in der Email.');
    });
}

