$.fn.imageBorder = function(){  
    return this.each(function(){  
        $(this).addClass("jqImageBorder");  
        $(this).hover(  
            function(){  
$(this).fadeTo(200,0.65);  
               
            },  
            function(){  
     $(this).fadeTo(200,1.0);              
            }  
        );  
    });  
} 
