$(document).ready(function(){

    /* !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 > 2) {
        $('#projectGalleryThumbWrapper').show();
    }


});
