jQuery doesn't work

jQuery doesn't work

Hi, I've got a problem, i'm using jQuery but it doesn't work and I don't know why, 

here is my code

  1. <head>

  2. <script  src="prototype.js" type="text/javascript"></script>
  3. <script  src="jquery.js" type="text/javascript"></script>
  4. <script src="jquery.dataTables.js" type="text/javascript" ></script>
  5.     <script type="text/javascript">
  6.      jQuery.noConflict();
  7.     jQuery(document).ready(function() {
  8. alert('document ready');
  9. CreateTable();
  10. });
  11. function CreateTable(){
  12. var oTable = jQuery('#example').dataTable({
  13.    "bPaginate":true,
  14.    "iDisplayLength": 50 ,
  15.    "bLengthChange": false,
  16.    "bFilter": false,
  17.    "sPaginationType": "full_numbers",
  18.    "bAutoWidth": false,
  19.    "aoColumns": [
  20.        {sWidth: '20px'},
  21.        {sWidth: '20px'},
  22.        {sWidth: '30px'},
  23.        {sWidth: '50px'},
  24.        {sWidth: '50px'},
  25.    ],
  26.    "oLanguage": {
  27. "sLengthMenu": "Mostrar _MENU_ rexistros por paxina",
  28. "sZeroRecords": "Non existen rexistros",
  29. "sInfo": "Mostrar de _START_ a _END_ de _TOTAL_ rexistros",
  30. "sInfoEmtpy": "Mostrar de 0 a 0 a 0 registros",
  31. "sInfoFiltered": "(filtrado de _MAX_ rexistros totais)",
  32. "sSearch": "Procurar" ,
  33. "oPaginate":{
  34. "sNext": "Seguinte",
  35. "sFirst": "Primeiro",
  36. "sPrevious":"Anterior",
  37. "sLast":"Ultimo"
  38. }
  39. }

  40.     

  41. });
  42. }
  43. </script>
I got my .js's in the same directory as my jspx file, and the alert ('document ready') is never shown.

Any ideas ?????

Thanks