I've got a great effect where you hover your mouse over a particular element and it scales bigger. I did this simply with:
$('#element_to_scale').live('mouseenter', function() {
$(this).stop().animate({zoom: 2});
}).live('mouseleave', function() {
$(this).stop().animate({zoom: 1});
});
Problem is this doesn't work on firefox :(. I read now that firefox is the only browser which doesn't support css zoom? Seems very strange... so what's the best approach to animating a zooming mechanism with jQuery above?