$(document).ready(function() {
    			$('.options-wrapper ul li').mouseenter(function(){
    				$(this).find('img').animate({
    					opacity: 0.5
    				},500);
    			});
    			
    			$('.options-wrapper ul li').mouseleave(function(){
    				$(this).find('img').animate({
    					opacity: 1
    				},500);
    			});
        	});

