jQuery(function($) {
	
	 //footer comments link => Hover
	$('#footer-comments-li a').hover(
    		function(){		
    			$('#comments-icon-bg').css({backgroundPosition: '0px 0px'});
    		},
    		function(){
    			$('#comments-icon-bg').css({backgroundPosition: '0px 17px'});
    		}
    );
     //footer report link => Hover
	$('#footer-report-li a').hover(
    		function(){		
    			$('#report-icon-bg').css({backgroundPosition: '0px 0px'});
    		},
    		function(){
    			$('#report-icon-bg').css({backgroundPosition: '0px 17px'});
    		}
    );
  
    
});

