$(document).ready(function(){
    $('.konzept').click(conceptC);
    $('.unternehmen').click(function(){
        $('#proges').animate({width:'183px'});
        $('#containercontent2').hide();
        $('#containercontent4').hide();
        $('#containercontent5').hide();
        $('#containercontent6').hide();
        $('#containercontent7').hide();
        $('#containercontent').hide();
        $('#containercontent3').show();
        $('.port_1').hover(function(){
            $('.portraitimage').attr('src','modul/user/youconcept/public/image/rene.png').show();
        }, function(){
            $('.portraitimage').hide();
        });
        $('.port_2').hover(function(){
            $('.portraitimage').attr('src','modul/user/youconcept/public/image/roger.png').show();
        }, function(){
            $('.portraitimage').hide();
        });
        $('.port_3').hover(function(){
            $('.portraitimage').attr('src','modul/user/youconcept/public/image/Fabian.png').show();
        }, function(){
            $('.portraitimage').hide();
        });
        $('.pdfimage').hover(function(){
            $('.pdfimage').attr('src','modul/user/youconcept/public/image/pdfover.png').show();
        }, function(){
            $('.pdfimage').attr('src','modul/user/youconcept/public/image/pdf.png').show();
        });
        return false;
    });
    $('.dienstleistungen').click(function(){
        $('#proges').animate({width:'283px'});
        $('#containercontent2').hide();
        $('#containercontent3').hide();
        $('#containercontent5').hide();
        $('#containercontent6').hide();
        $('#containercontent7').hide();
        $('#containercontent').hide();
        $('#containercontent4').show();
        return false;
    });
    $('.vertretungen').click(function(){
        $('#proges').animate({width:'403px'});
        $('#containercontent2').hide();
        $('#containercontent3').hide();
        $('#containercontent4').hide();
        $('#containercontent6').hide();
        $('#containercontent7').hide();
        $('#containercontent').hide();
        $('#containercontent5').show();
        return false;
    });
    $('.referenzen').click(function(){
        $('#proges').animate({width:'503px'});
        $('#containercontent2').hide();
        $('#containercontent3').hide();
        $('#containercontent4').hide();
        $('#containercontent5').hide();
        $('#containercontent7').hide();
        $('#containercontent').hide();
        $('#containercontent6').show();
        return false;
    });
    $('.kontakt').click(conceptK);
});
