jQuery(
        function() {
            jQuery('.JobListPortlet div.VacancyResults div.li_roundedcornr_box').hover(
                    function(event) {
                        jQuery(this).addClass('hover');
                    },
                    function(event) {
                        jQuery(this).removeClass('hover');
                    }
                    );
        }
        );