/* Prayer Engine - This controls various AJAX interactions on the main prayer wall */
$(document).ready(function() {
	
	if ($.browser.mozilla) { // Get rid of dotted links in Firefox
		$('head').append('<style type=\"text/css\">:-moz-any-link:focus { outline: none; }</style>');
	};
	
	$("#prayerform").validate({ // Initial JS validation of form.
	  rules: {
	    email: {
	      required: true,
	      email: true
	    },
		prayer: {
	      required: true,
	      minlength: 10
	    }
	  }
	});
	
	$("#twitter_ok").click(function () { //If enabled, toggle the Prayer Tweet field
		$("#pe-twitter-area").slideToggle();
	});
	
	if(jQuery.browser.msie&&jQuery.browser.version<8){
		jQuery('#times-tab').toggle(function() {
			jQuery('#campus-dropdown').show();
			jQuery('#main-navigation').css("top","389px");
			jQuery('#purpose-nav').css("top","465px");
			jQuery('#coming-up').css("top","1019px");
		}, function() {
			jQuery('#campus-dropdown').hide();
			jQuery('#main-navigation').css("top","102px");
			jQuery('#purpose-nav').css("top","178px");
			jQuery('#coming-up').css("top","732px");
		});
		
		jQuery('#times-button').toggle(function() {
			jQuery('#campus-dropdown').show();
			jQuery('#main-navigation').css("top","389px");
			jQuery('#purpose-nav').css("top","465px");
			jQuery('#coming-up').css("top","1019px");
		}, function() {
			jQuery('#campus-dropdown').hide();
			jQuery('#main-navigation').css("top","102px");
			jQuery('#purpose-nav').css("top","178px");
			jQuery('#coming-up').css("top","732px");
		});
		
		jQuery('#hendersonville-link').click(function() {
			jQuery('#hendersonville-link').addClass('selected');
			jQuery('#gallatin-link').removeClass('selected');
			jQuery('#whitehouse-link').removeClass('selected');
			jQuery('#springfield-link').removeClass('selected');
			jQuery('#online-link').removeClass('selected');
			jQuery('#gallatin-campus').hide();
			jQuery('#whitehouse-campus').hide();
			jQuery('#online-campus').hide();
			jQuery('#springfield-campus').hide();
			jQuery('#hendersonville-campus').fadeIn();
			return false;
		});
		
		jQuery('#gallatin-link').click(function() {
			jQuery('#gallatin-link').addClass('selected');
			jQuery('#hendersonville-link').removeClass('selected');
			jQuery('#whitehouse-link').removeClass('selected');
			jQuery('#springfield-link').removeClass('selected');
			jQuery('#online-link').removeClass('selected');
			jQuery('#hendersonville-campus').hide();
			jQuery('#whitehouse-campus').hide();
			jQuery('#springfield-campus').hide();
			jQuery('#online-campus').hide();
			jQuery('#gallatin-campus').fadeIn();
			return false;
		});
		
		jQuery('#whitehouse-link').click(function() {
			jQuery('#whitehouse-link').addClass('selected');
			jQuery('#hendersonville-link').removeClass('selected');
			jQuery('#gallatin-link').removeClass('selected');
			jQuery('#springfield-link').removeClass('selected');
			jQuery('#online-link').removeClass('selected');
			jQuery('#hendersonville-campus').hide();
			jQuery('#gallatin-campus').hide();
			jQuery('#springfield-campus').hide();
			jQuery('#online-campus').hide();
			jQuery('#whitehouse-campus').fadeIn();
			return false;
		});
		
		jQuery('#online-link').click(function() {
			jQuery('#online-link').addClass('selected');
			jQuery('#hendersonville-link').removeClass('selected');
			jQuery('#whitehouse-link').removeClass('selected');
			jQuery('#gallatin-link').removeClass('selected');
			jQuery('#springfield-link').removeClass('selected');
			jQuery('#hendersonville-campus').hide();
			jQuery('#whitehouse-campus').hide();
			jQuery('#springfield-campus').hide();
			jQuery('#gallatin-campus').hide();
			jQuery('#online-campus').fadeIn();
			return false;
		});
		
		jQuery('#springfield-link').click(function() {
			jQuery('#springfield-link').addClass('selected');
			jQuery('#hendersonville-link').removeClass('selected');
			jQuery('#whitehouse-link').removeClass('selected');
			jQuery('#gallatin-link').removeClass('selected');
			jQuery('#online-link').removeClass('selected');
			jQuery('#hendersonville-campus').hide();
			jQuery('#whitehouse-campus').hide();
			jQuery('#online-campus').hide();
			jQuery('#gallatin-campus').hide();
			jQuery('#springfield-campus').fadeIn();
			return false;
		});

	} else {
		jQuery('#times-tab').toggle(function() {
			jQuery('#campus-dropdown').slideDown(500);
			jQuery('#main-navigation').animate({
				top: '+=287'
			}, 500, function() {
				// Animation complete.
			});

			jQuery('#purpose-nav').animate({
				top: '+=287'
			}, 500, function() {
				// Animation complete.
			});

			jQuery('#coming-up').animate({
				top: '+=287'
			}, 500, function() {
				// Animation complete.
			});
		}, function() {
			jQuery('#campus-dropdown').slideUp(500);
			
			jQuery('#main-navigation').animate({
				top: '-=287'
			}, 500, function() {
				// Animation complete.
			});

			jQuery('#purpose-nav').animate({
				top: '-=287'
			}, 500, function() {
				// Animation complete.
			});

			jQuery('#coming-up').animate({
				top: '-=287'
			}, 500, function() {
				// Animation complete.
			});
		});
		
		jQuery('#times-button').toggle(function() {
			jQuery('#campus-dropdown').slideDown(500);
			jQuery('#main-navigation').animate({
				top: '+=287'
			}, 500, function() {
				// Animation complete.
			});

			jQuery('#purpose-nav').animate({
				top: '+=287'
			}, 500, function() {
				// Animation complete.
			});

			jQuery('#coming-up').animate({
				top: '+=287'
			}, 500, function() {
				// Animation complete.
			});
		}, function() {
			jQuery('#campus-dropdown').slideUp(500);
			
			jQuery('#main-navigation').animate({
				top: '-=287'
			}, 500, function() {
				// Animation complete.
			});

			jQuery('#purpose-nav').animate({
				top: '-=287'
			}, 500, function() {
				// Animation complete.
			});

			jQuery('#coming-up').animate({
				top: '-=287'
			}, 500, function() {
				// Animation complete.
			});
		});
		
		jQuery('#hendersonville-link').click(function() {
			jQuery('#hendersonville-link').addClass('selected');
			jQuery('#gallatin-link').removeClass('selected');
			jQuery('#whitehouse-link').removeClass('selected');
			jQuery('#springfield-link').removeClass('selected');
			jQuery('#online-link').removeClass('selected');
			jQuery('#gallatin-campus').hide();
			jQuery('#whitehouse-campus').hide();
			jQuery('#springfield-campus').hide();
			jQuery('#online-campus').hide();
			jQuery('#hendersonville-campus').fadeIn();
			return false;
		});
		
		jQuery('#gallatin-link').click(function() {
			jQuery('#gallatin-link').addClass('selected');
			jQuery('#hendersonville-link').removeClass('selected');
			jQuery('#whitehouse-link').removeClass('selected');
			jQuery('#springfield-link').removeClass('selected');
			jQuery('#online-link').removeClass('selected');
			jQuery('#hendersonville-campus').hide();
			jQuery('#whitehouse-campus').hide();
			jQuery('#springfield-campus').hide();
			jQuery('#online-campus').hide();
			jQuery('#gallatin-campus').fadeIn();
			return false;
		});
		
		jQuery('#whitehouse-link').click(function() {
			jQuery('#whitehouse-link').addClass('selected');
			jQuery('#hendersonville-link').removeClass('selected');
			jQuery('#gallatin-link').removeClass('selected');
			jQuery('#springfield-link').removeClass('selected');
			jQuery('#online-link').removeClass('selected');
			jQuery('#hendersonville-campus').hide();
			jQuery('#gallatin-campus').hide();
			jQuery('#springfield-campus').hide();
			jQuery('#online-campus').hide();
			jQuery('#whitehouse-campus').fadeIn();
			return false;
		});
		
		jQuery('#online-link').click(function() {
			jQuery('#online-link').addClass('selected');
			jQuery('#hendersonville-link').removeClass('selected');
			jQuery('#whitehouse-link').removeClass('selected');
			jQuery('#gallatin-link').removeClass('selected');
			jQuery('#springfield-link').removeClass('selected');
			jQuery('#hendersonville-campus').hide();
			jQuery('#whitehouse-campus').hide();
			jQuery('#gallatin-campus').hide();
			jQuery('#springfield-campus').hide();
			jQuery('#online-campus').fadeIn();
			return false;
		});
		
		jQuery('#springfield-link').click(function() {
			jQuery('#springfield-link').addClass('selected');
			jQuery('#hendersonville-link').removeClass('selected');
			jQuery('#whitehouse-link').removeClass('selected');
			jQuery('#gallatin-link').removeClass('selected');
			jQuery('#online-link').removeClass('selected');
			jQuery('#hendersonville-campus').hide();
			jQuery('#whitehouse-campus').hide();
			jQuery('#gallatin-campus').hide();
			jQuery('#online-campus').hide();
			jQuery('#springfield-campus').fadeIn();
			return false;
		});

	}
	
	function myover() {
		jQuery("#my-description").fadeIn(150);
		jQuery("#my-button").fadeTo(50, 1, function() {
			jQuery("#my-button").addClass('over');
		});
	};

	function myout() {
		jQuery("#my-button").fadeTo(1000, 1, function() {
			jQuery("#my-description").fadeOut(150);
			jQuery("#my-button").removeClass('over');
		});
	};

	var myconfig = {sensitivity: 3, interval: 100, timeout: 0, over: myover, out: myout};

	jQuery("#my-button").hoverIntent(myconfig);
});
