﻿/* Funções default */

$(window).load(function(){

    //Remove margin direita dos elementos ímpares      
    $('#fotografia .item-trabalho').each(function(index){
        if (index % 2 != 0){
            $(this).css('margin-right', '0');
        }                
    });
        
    $('#design .item-trabalho').each(function(index){
        if (index % 2 != 0){
            $(this).css('margin-right', '0');
        }                
    });
    
    //Remove margin inferior dos últimos elementos
    $('#fotografia .item-trabalho:last').css('margin-bottom', '0');
    $('#fotografia .item-trabalho:last').prev().css('margin-bottom', '0');
    
    $('#design .item-trabalho:last').css('margin-bottom', '0');
    $('#design .item-trabalho:last').prev().css('margin-bottom', '0');    
    
});
