why are cycle (plugin) functions breaking down in my XSLT page?

why are cycle (plugin) functions breaking down in my XSLT page?

I have cycle finally going in my XSLT but I had to disable several controls in order to do it. Right now all I have is the "fx" going. First there was trouble with my paging function - disabling it made cycle finally stack the images in place as it normally as opposed to a vertical sequential order. Then the transitions were not happening at al - regardless of whether i was using a pager, the top slide was not moving out of the way. I have no idea why there should be a conflict between cycle and the xslt page.

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- DWXMLSource="test-04.xml" -->
  3. <!DOCTYPE xsl:stylesheet  [
  4. <!ENTITY nbsp   "&#160;">
  5. <!ENTITY copy   "&#169;">
  6. <!ENTITY reg    "&#174;">
  7. <!ENTITY trade  "&#8482;">
  8. <!ENTITY mdash  "&#8212;">
  9. <!ENTITY ldquo  "&#8220;">
  10. <!ENTITY rdquo  "&#8221;"> 
  11. <!ENTITY pound  "&#163;">
  12. <!ENTITY yen    "&#165;">
  13. <!ENTITY euro   "&#8364;">
  14. ]>
  15. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  16.  <xsl:output method="html" encoding="utf-8" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>

  17. <xsl:template match="/">

  18.  <html xmlns="http://www.w3.org/1999/xhtml">
  19.     <head>
  20.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  21.     <title>Untitled Document</title>
  22.     <link href="styles9.css" rel="stylesheet" type="text/css" />

  23.      <script type='text/javascript' src='jquery-1.3.2.min.js'></script>
  24. <script type="text/javascript" src="http://malsup.github.com/chili-1.7.pack.js"></script>
  25. <script type="text/javascript" src="jquery.cycle.all.min.js"></script>
  26. <script type="text/javascript" src="jquery.easing.1.3.js"></script>

  27. <!-- this is the tooltip script-->
  28. <script type='text/javascript' src='tooltip.js'></script>
  29.        <script type="text/javascript">  
  30. //$(document).ready(function() {
  31.     $('#imageFrame').cycle({
  32.          fx: 'scrollHorz', 
  33. speed: 800, 
  34. //timeout: 0, 
  35. //prev: '#prev',
  36. //next: '#next',
  37. // pager: '#pagerNav',
  38. /* pagerAnchorBuilder: pagerFactory }); function pagerFactory(idx, slide) { var s = idx > 3 ? ' style="display:none"' : ''; return '<li'+s+'><a href="#">'+(idx+1)+'</a></li>'; };
  39. */
  40. });


  41. </script> </head>
  42.     <body>
  43.     
  44. <div id="content">
  45.   <table>
  46.     <tr>
  47.       <td ><div id="projectName" class="boxes"> <span class="contentID">project name</span><br />
  48.         <xsl:value-of select="Root/Prjct/Name"/> </div>  
  49.         <br />
  50.         <div id="cycleWrap" class="boxes">
  51.           <div id="imageFrame">  
  52.           <img width="583" height="266">
  53.                   <xsl:attribute name="src"> 
  54.                   <xsl:value-of select= "Root/Prjct/Images/Img01" /> 
  55.                   </xsl:attribute>
  56.                   </img>
  57.                    <img width="583" height="266">
  58.                   <xsl:attribute name="src"> 
  59.                   <xsl:value-of select= "Root/Prjct/Images/Img02" /> 
  60.                   </xsl:attribute>
  61.                   </img>
  62.                    <img width="583" height="266">
  63.                   <xsl:attribute name="src"> 
  64.                   <xsl:value-of select= "Root/Prjct/Images/Img03" /> 
  65.                   </xsl:attribute>
  66.                   </img>
  67.                    <img width="583" height="266">
  68.                   <xsl:attribute name="src"> 
  69.                   <xsl:value-of select= "Root/Prjct/Images/Img04" /> 
  70.                   </xsl:attribute>
  71.                   </img>
  72.            </div>
  73.           <div id="cycleCtrl">
  74.             <div id="prev" class="pager"><a href="#">Prev</a></div>
  75.             <div id="next" class="pager"><a href="#">Next</a></div>
  76.             <div id="pagerNav" class="pager"></div>
  77.             <p id="caption" class="pager"></p> 
  78.           </div>
  79.         </div>
  80.         
  81.         
  82.         <div id="projectText" class="boxes"> 
  83.          <a href="" id="descController" > 
  84.          <img src="images/arrow.gif" name="arrow" width="5" height="10" id="arrow" /> 
  85.          <span class="contentID">project text</span> <br />
  86.         <span id="desc">  
  87.                  <xsl:value-of select=" Root/Prjct/Description"/> 
  88.         </span>
  89.          </a>
  90.         </div>
  91.         
  92.         </td>
  93.     </tr>
  94.   </table>
  95. </div>
  96.     </body>
  97.     </html>

  98. </xsl:template>
  99. </xsl:stylesheet>