$(document).ready(function(){


    /* !contentbereich */
    /* ---------------------------------------------------------------------- */

    var contentHeight = $('#contentMiddleInner').height();
    //alert(contentHeight);
    $('#contentMiddle').css('height', contentHeight);


    /* !Projects */
    /* ---------------------------------------------------------------------- */
    
    // delete none used a tags
    $("a[href='uploads/tx_templavoila/']").remove();

    // startImageLoader
    var startImage = $('.projectGalleryThumb:first').attr('href');
    $('.projectGalleryBig').attr('src', startImage);

    // clickImageLoader
    $('.projectGalleryThumb').click(function(){
        var newImage = $(this).attr('href');
        
        var isopen = $(this).attr('class');
        if ( isopen == 'projectGalleryThumb projectGalleryThumbAct' ){
            return false;
        }
        
        $('.projectGalleryBig').fadeOut("slow", function(){
            $(this)
                .attr('src', newImage)
                .fadeIn("slow");
        });
            
            
        $('*').removeClass('projectGalleryThumbAct');
        $(this).addClass('projectGalleryThumbAct');
    
        return false;
    });

    $('#projectGalleryThumbWrapper :first-child').addClass('projectGalleryThumbAct');
    
    var projects = $('.projectGalleryThumb').size();
    if (projects > 1) {
        $('#projectGalleryThumbWrapper').show();
    }


    /* !hoehenkorrektur */
    /* ---------------------------------------------------------------------- */
    var contentHeight = $('#contentMiddle').height();
    var contentHeightCorrect = contentHeight - 120;
    $('#contentMiddle').css('height', contentHeightCorrect); 

});
