$(document).ready(function() {

	if ($('#formSubmitted').hasClass('yep')) {
		$('#subWrapper').css('height', 790);
		$('#ourStory,#ourValues,#responsibilities,#onCampus').hide();
	} else {
		$('#subWrapper').css('height', 985);
		$('#ourValues,#responsibilities,#applyForm,#onCampus').hide();
	}
	$('#bodyMenu li a, #mainButton').click(function() {
		var linkRel = $(this).attr('rel');
		if (linkRel == 'applyForm') {
			$('#subWrapper').animate({
				height: "3000px"
			}, 800);
		} else if (linkRel == 'onCampus') {
			$('#subWrapper').animate({
				height: "1750px"
			}, 800);			
		} else {
			$('#subWrapper').animate({
				height: "985px"
			}, 800);
		}
		$.scrollTo('#mainButton', 800);
		$('#bodyContent > div:visible').slideUp('slow');
		$('#'+linkRel).slideDown('slow');
		return false;
	});
	$('form').submit(function() {
		if ($('#haveReadValues').is(':checked')) {
			// do nothing
		} else {
			alert('You must affirm that you have read the Southern Tide values before you submit your application.');
			return false;
		}
	});
	
	if($('.section').length > 0){
		$('.section').click(function(){
			s=s_gi(s_account);
			s.linkTrackVars='prop6';
			s.prop6=$(this).attr('rel').toLowerCase();
			s.tl(this, 'o', 'Ambassador Page Name');
		});
	}
});
