$(document).ready(
	function()
	{	
		//$('#myCelebretySlides').cycle( { fx: 'fade', speed: 3000, timeout: 2000 } );	
		//$('#dvRandomPromos').cycle( { fx: 'scrollDown', speed: 5000, timeout: 2000 } );
		$('#scrollerContent').cycle( { fx: 'scrollLeft', speed: 'fast', timeout: 0, next: '.next' } );
		$('#scrollerContent').cycle( { fx: 'scrollRight', speed: 'fast', timeout: 0, prev: '.previous' } );
		
		<!-- load video list on dvTestimonySlides -->
		var rspCelebVideo = $.ajax( { url: "celebritylinks.html", async: false } ).responseText;
                
		try
		{
			$("#dvTestimonySlides").html(rspCelebVideo).fadeIn('slow');					
			
			return false;
		}
		catch(theException)
		{
			document.getElementById("dvTestimonySlides").innerHTML = rspCelebVideo;
		}
		
		$("#imgVidPlayer").click(
			function ()
			{
				$("#vidPlay").show();
				$("#dvVidPlayer").hide();
			}
		);
		
		$("#imgVidPlayer2").click(
			function()
			{
				$("#vidPlay2").show();
				$("#dvVidPlayer2").hide();
			}
		);
	}
);
