[jQuery] Same classes div problem

[jQuery] Same classes div problem


Hey everyone,
So I have a set of divs all with the same class name, all of these
divs have a hidden div inside of them with the class name "hidden"
I wrote this and it seemed to work, except ALL hidden divs show
instead of the one being hovered:
    $(".product-right").mouseover(function() {
        $(".product-right .hidden").show();
    });
I want only the div that is being hovered to show its hidden div,
unique IDs are sort of not a possibility so I was wondering if there
was anyway to do it with jquery?
Thanks
Jose