/*
*Class que permite fazer :hover a qualquer elemento
*Resolve problemas com IE6
*USO:
* $(document).ready(function(){
*       $("#btLusort_pt").hoverClass("hoverClass");
*});
*/


$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c); },
            function() { $(this).removeClass(c); }
        );
    });
};