jQuery(document).ready(function() {

if (jQuery.support.opacity)
{
    jQuery(".sidebar-box-inside-connect img").hover(
        function() 
        {
            jQuery(this).fadeTo('normal', 0.2);
        },
        function() 
        {
            jQuery(this).fadeTo('normal', 1);
        }
    );
}
});