/**
 * @author Davy
 */

 $(document).ready(documentReady);
	
 function documentReady()
 {	
	$('#container #sidebar a img').each(function() {
            $(this).hover(function() {
                $("#container #sidebar a img").stop().animate({ opacity: 0.15 }, 300);
				$(this).stop().animate({ opacity: 1.0 }, 500);
            },
           function() {
               $("#container #sidebar a img").stop().animate({ opacity: 1.0 }, 300);
           });
        });
 }
 
