$(function() {

	// PNG Fix
	//$(document).pngFix();
	
	// jCaption
	$("#page-content #page-content-wrapper #page-content-main img").jcaption({
		copyStyle: true,
		animate: true,
		show: {height: "show"},
		hide: {height: "hide"}
	});
	
	//Home page image fade
	$('.trails-img').innerfade({
		speed: 750,
		timeout: 4000,
		containerheight: '344px',
		runningclass: 'trails-img'
		});
	$('.rivers-img').innerfade({
		speed: 750,
		timeout: 4000,
		containerheight: '344px',
		runningclass: 'rivers-img'
		});
	
	//Form values/colors
	$('#footer-content input[type="text"]').css('color', '#666666');
	$('#footer-content input[type="text"]').click(
		function() {
			if (this.value == this.defaultValue) {
				this.value = '';
				$(this).css('color', '#222');
			}
		}
	);
	$('#footer-content input[type="text"]').blur(
		function() {
			if (this.value == '') {
				this.value = this.defaultValue;
				$(this).css('color', '#666666');
			}
		}
	);

});
