jQuery.noConflict();

// Put all your code in your document ready area

jQuery(document).ready(function ($) {

    // Do jQuery stuff using $ this where the functions need to go   

    $(document).ready(function () {
		$('div#imagerotator').cycle({
			speed: 700,
			timeout: 4000,
			pause: true
		});
    });

});

/* 
Function to return dom object for the movie passed in
*/
function getFlashMovieObject(movieName) {
    if (window.document[movieName]) {
        return window.document[movieName];
    }
    if (navigator.appName.indexOf("Microsoft Internet") == -1) {
        if (document.embeds && document.embeds[movieName])
            return document.embeds[movieName];
    }
    else // if (navigator.appName.indexOf("Microsoft Internet")!=-1)
    {
        return document.getElementById(movieName);
    }
}
/*
Function that will send a value to flash as the 'message' parameter
*/
function SendDataToFlashMovie(value)
{
     var flashMovie=getFlashMovieObject("hordle");
     flashMovie.SetVariable("movieSource", value);
 }



 var $j = jQuery.noConflict();
 $j(function () {

	$j(document).ready(function () {

	});
});
 
