jQuery not Working in Fire Fox

jQuery not Working in Fire Fox

I have been to a few Web Development forums, but no one seems to be able to help me. Fire Fox is not running jQuery in any form or fashion. It gives me the following errors:


  1. Timestamp: 10/15/12 11:14:21 AM
  2. Error: ReferenceError: $ is not defined
  3. Source File: http://zanime.net/test/js/filter.js
  4. Line: 3
  1. Timestamp: 10/15/12 11:14:21 AM
  2. Error: ReferenceError: $ is not defined
  3. Source File: http://zanime.net/test/js/reset.js
  4. Line: 2
Here is my code:


  1. $(document).ready(function(){
  2.     $('#filterBox1').change(function() { // when value of filterBox1 changes
  3. var selection = $('#filterBox1 option:selected').val(); // get it's value
  4. if (selection == 'Windows') { // if windows is selected from OS
  5.              $(".tb-container:not(:has(img.windows))").hide(); // Hide all DIVs that do not contain img.windows


  6.         }
  7. if (selection == 'Mac') { // if mac is selected from OS
  8.              $(".tb-container:not(:has(img.mac))").hide(); // Hide all DIVs that do not contain img.mac
  9.         }
  10.     });
  11. });
Here is my test site: http://zanime.net/test THanks for any help you can give as being a beginner I am at a lose.