effect doesn't run in firefox

effect doesn't run in firefox

Hi everybody,
i'm doing, like usual, an amazing job of outstanding webdesign  , suddenly i told my self.. let's try this piece of art in Firefox..  doh!!
doesn't work!!! ( in safari and chrome it's ok... i don't have it, but i bet that in IE doesn't work too! )

I've made some tabs that are addressed to show some content when clicked; here is the script i've made:

  1. $(document).ready(function () {
  2. $('#zona1 .sez.active').fadeIn(0);

  3. $('#schede li span.centro').click(function(){
  4. var sezione = $(this).attr('id')
  5. if (this.id  != 'active') {
  6. $('#schede li span.active').removeClass('active').parent().removeClass('active');
  7. $(this).addClass('active');
  8. $(this).siblings().addClass('active');
  9. $(this).parent().addClass('active');
  10. $('#zona1 .sez.active').fadeOut(400, entrata).removeClass('active');
  11. function entrata (){
  12. $(sezione).fadeIn(300).addClass('active')
  13. };
  14. };
  15. });
  16. });
  17.  
if you want (i'll be very grateful) to have a look to the code and the page just click:

800.omnigrafica.it/storia.html

thank you in advice.

kindly your's 
theApprentice