jQuery(function() {
    var parent;
    jQuery('ul.social li').fadeTo(0, 0.2);

        jQuery('ul.social li').hover(function() {
        jQuery(this).stop().fadeTo(400, 0.6); 
    }, function() {
        jQuery(this).stop().fadeTo(200, 0.2); 
    });

    jQuery('.project-links img').fadeTo(0, 0.2);

        jQuery('.project-links img').hover(function() {
        jQuery(this).stop().fadeTo(400, 0.6); 
    }, function() {
        jQuery(this).stop().fadeTo(200, 0.2); 
    });

    jQuery('a.ws_next, a.ws_prev').fadeTo(0, 0.0);

        jQuery('a.ws_next, a.ws_prev').hover(function() {
        jQuery(this).stop().fadeTo(400, 1); 
    }, function() {
        jQuery(this).stop().fadeTo(200, 0.0); 
    });

    jQuery('.post-news a:link img, .s-body a:link img').fadeTo(0, 1);

        jQuery('.post-news a:link img, .s-body a:link img').hover(function() {
        jQuery(this).stop().fadeTo(400, 0.5); 
    }, function() {
        jQuery(this).stop().fadeTo(400, 1); 
    });


    jQuery('.thumbnail').hover(function() {
        jQuery('.thumb-hover', this).stop().fadeTo(600, 0.7);
    }, function() {
        jQuery('.thumb-hover', this).stop().fadeTo(400, 0.0);
    });

 });
