$(document).ready(function(){


	$('#homeSplash').cycle({ 
 	   timeout:  6000,
 	   pause:  1,
 	   speed:  1500,
 	   autostop: 6,
 	   autostopCount:6});


/* Create hidden text expand */
$('.textToShow').hover (
   function()
    {	$(this).css({'cursor':'pointer'});},
    function()
    {	$(this).css({'cursor':'default'});}
   );

$('.textToShow').click(
	function() {
	$(this).find('.hiddenText').show(500);
	$(this).find('.moreTextCue').hide();
	$(this).css({'cursor':'default !important'});
	return false;
	},
	function() {
	
	/* change show and hide above to toggle to turn on */
	$(this).find('.hiddenText').toggle();
	$(this).find('.moreTextCue').toggle();
	return false;
});


	$('#s').val("Search Site").clearonfocus();
});
