I created a rotating slideshow using jQuery's crossSlide code and put it on the home page within {literal} tags. That was the only way I could get it to show up correctly.
The problem is...when I am in the WYSISYG part of Content->Pages->Home, the literal tags LITERALLY show up

I've attached a picture of what it looks like

& here is the code for that page (the slideshow code):
Code: Select all
<!-- Javascript Slideshow -->
{literal}
<__script__ src="scripts/jquery-1.5.min.js"></__script>
<__script__ src="scripts/jquery.cross-slide.js"></__script>
<__script__ type="text/javascript">// <![CDATA[
$(function() {
$('#slideshow').crossSlide({
sleep: 3,
fade: 2
}, [
{ src: 'crossSlide/1.jpg' },
{ src: 'crossSlide/2.jpg' },
{ src: 'crossSlide/3.jpg' },
{ src: 'crossSlide/4.jpg' }
])
});
// ]]></__script>
{/literal} <!-- End Slideshow Script-->
<h2 style="text-align: center;">Welcome!</h2>
<!-- Slideshow Code - DO NOT EDIT! -->