// JavaScript Document// Function to submit form data to mapfunction submitForm(){	document.getElementById("searchform").submit();	}// Function to clear data from form once the user clicks out of the input boxfunction clearInput() {	document.getElementById("location").value = '';}// Function to insert Address, City, State into input box once user clicks out input boxfunction addInput() {	if (document.getElementById("location").value == "") {		document.getElementById("location").value = 'Address, City, State';	}}// Function to initialize audio player on radio pagefunction callAudio(fileName, titleName) {	AudioPlayer.embed("audioplayer", {soundFile:  "mp3/" + fileName, titles: titleName  });}// Function to diplay title over audio player on radio pagefunction displayTitle(title) {	document.getElementById('songTitle').innerHTML = title;}// Changes main image on Outdoor and Kids page when one of the small preview images is clickedfunction outdoorDisplay (imageName) {	document.getElementById('outdoor_window').src = "images/" + imageName;	}// Changes link to pdf on Kids page when one of the small preview images is clickedfunction pdfDownload (pdfName) {	document.getElementById('pdfLinks').href = pdfName;	}	$(document).ready(function() {		// Preloads pictures on index page	if (document.getElementById('content_right')) {		getPics();	}		// Takes user to homepage when clicked	$("#logobox").click(function() {	  	window.location = 'index.php';	});	// Inserts last div of video wrapper first and offsets box by 160px to prepare box for navigation	$('#vid_wrapper div.titlebox:last').insertBefore($('#vid_wrapper div.titlebox:first'));	var vid_wrapper_width = ($('.titlebox').length) * 160;	$('#vid_wrapper').css({left: '-160px', width: vid_wrapper_width + "px"});		/* Left arrow animates video box to the left -160px, puts the first div last and initializes x-coordinate of box	to -160px */	$("#leftarrow_vid").click(function() {  		$("#vid_wrapper").animate({left: '-=160px'}, 300,function() {   			$('#vid_wrapper div.titlebox:first').insertAfter($('#vid_wrapper div.titlebox:last'));			$("#vid_wrapper").css({left: '-160px'});		});	});	/* Right arrow animates video box to the left +160px, puts the last div first and initializes x-coordinate of box	to -160px */	$("#rightarrow_vid").click(function() {		$("#vid_wrapper").animate({left: '+=160px'}, 300,function() {			$("#vid_wrapper").css({left: '-160px'});			$('#vid_wrapper div.titlebox:last').insertBefore($('#vid_wrapper div.titlebox:first'));					});		});			});
