//ON LOAD Functions and Call
//Should only be in here if for every page
	$(function(){ 
	
		
	});
	
	
	function initSlider() {
		$('#coda-slider-1').codaSlider({
			autoSlideInterval: 5000,
			autoSlide: true,
			dynamicTabs: false,
			slideEaseDuration: 1000,
			autoHeight: false,
			autoHeightEaseFunction: 'easeInOutCubic',
			dynamicArrowRightText: 'Next',
			dynamicArrowLeftText: 'Prev'
		});
	}
	
	//CLEAR FORM ON FOCUS
	// clearing  inputs on focus
	function doClear(theText) { if (theText.value == theText.defaultValue) { theText.value = ""; } }
	//replace input value with default on blur
	function doReset(theText) { if (theText.value == "") { theText.value = theText.defaultValue; } }
