$(document).ready(
    function(){
        $('#soc a img').hover(
            function(){
                if($(this).attr('class') != ''){
                    $(this).attr('src', images[$(this).attr('class')]['red']);
                }
            },
            function(){
                if($(this).attr('class') != ''){            
                    $(this).attr('src', images[$(this).attr('class')]['default']);
                }
            }
        );
    }
);
var images = {
    "fb": {
        "default": "/img/tmp/faceb.png", 
        "red": "/img/tmp/faceb_red.png", 
    }, 
    "vk": {
        "default": "/img/tmp/vk.png", 
        "red": "/img/tmp/vk_red.png", 
    },
    "tw": {
        "default": "/img/tmp/tw.png", 
        "red": "/img/tmp/tw_red.png", 
    },
    "vimeo": {
        "default": "/img/tmp/vimeo.png", 
        "red": "/img/tmp/vimeo_red.png", 
    },
    "you": {
        "default": "/img/tmp/you.png", 
        "red": "/img/tmp/you_red.png", 
    },
};

