// JavaScript Document
		$(document).ready(function() {
			$('ul#photofader').innerfade({
				speed: 1000,
				timeout: 4000,
				type: 'sequence',
				containerheight: '400px'
			});
			
 			$("#name,#email,#message,#reg-college,#reg-chapter,#reg-mailing-address,#reg-state,#reg-primary-name,#reg-primary-contact,#reg-social,#reg-pastor,#reg-church").toggleVal();
			
			$("#featured div.featBox").hover(function(){
				$(this).animate({'margin-top':'-3px','opacity':'0.8'},'fast');
			},function(){
				$(this).animate({'margin-top':'0','opacity':'1'},'fast');
			});
			
			$("#logo a,#callToAction,.send").hover(function(){
				$(this).animate({'opacity':'0.8'},'fast');
			},function(){
				$(this).animate({'opacity':'1'},'fast');
			});

		});
