
        $(document).ready(function(){						   
        
        
            $('#produkt_emotion').mouseover(function() {
                $(this).fadeTo("fast", 0);
            });
            $('#produkt_emotion').mouseout(function() {
                $(this).fadeTo("fast", 1.0);
            });
            
   		});
