/**
 * User: Mauro
 * Date: 12/09/11
 * Time: 17:28
 */
jQuery(document).ready(function() {
    $('.project').hover(function(){
        $(this).find('.rollover').fadeIn(100);
    },function(){
        $(this).find('.rollover').fadeOut(100);
    });
});
