Error $('#DIV')({}) in IE

Error $('#DIV')({}) in IE

dear all,
I've working on infographics system,
actually I got the real tutorial from here
and I make some modification of its structure,

the basic original code is taken from the path like this

  1.   <script type="text/javascript" src="js/zoommap.js"></script>


but, for some purpose I put the code on the PHP file like this

  1.     <?php
  2.    .......
  3.     <script type="text/javascript">
  4.    $.noConflict();
  5.     /* jQuery(document).ready(function($)*/
  6.    jQuery(document).ready(function($){
  7.   
  8.     /* Show jQuery is running */
  9.   
  10.    $('h1').css({textDecoration: 'underline'});
  11.   $('#map').zoommap({
  12.               // Width and Height of the Map
  13.               width: '902px',
  14.               height: '468px',
  15.             
  16.               //Initial Region to be shown
  17.               map: {
  18.                   id: 'campus',
  19.                   image: 'images/indonesia2.jpg',
  20.                   data: 'popups/kota.php?act=item&iditem=<?php echo
  21. $_GET['iditem']; ?>',
  22.                   maps: [
  23.                   {
  24.                     
  25.                   }
  26.                   ]
  27.               }
  28.           });
  29.       });
  30.   ............
  31.   ?>
it works very well in on firefox,
but here what IE said about the scripts

and this is the error line



I'm still looking for the answer of this problem,
thnx for all
best regards..