jQuery(document).ready(function($){
jQuery('table.cnss-social-icon tr td img').hover(function(){
jQuery(this).animate({
opacity: 0.5
}, 200);
},
function(){
jQuery(this).animate({
opacity: 1
}, 200);
});
jQuery('ul.cnss-social-icon li img').hover(function(){
jQuery(this).animate({
opacity: 0.5
}, {duration:200, queue:false});
},
function(){
jQuery(this).animate({
opacity: 1
}, {duration:200, queue:false});
});
});