$(document).ready(function(){
	$('#loader').hide();
	prep_reg_form();
});

function loadSection(href)
{
	$('#content').load(href, false, function(){
		prep_reg_form();
	});

	
	
	/*
	$('#content').animate({height: 1}, "slow", false, function(){
		$('#content').slideDown("slow");
		//$('#content').load(href, false, function(){
			//prep_reg_form();
		//});
	});
	*/
}


function prep_reg_form(){
	$('#situation select option').click(function(){
		if(	this.value == "uni_1" || this.value == "uni_2" ||
			this.value == "uni_3" ||this.value == "uni_4" ||
			this.value == "uni_post" ||this.value == "college"){
			$('#more_edu').show();
		} else {
			$('#more_edu').hide();
		}
	});
	
	$('#home select option').click(function(){
		if(this.value == "outside"){
			$('#outside_sco').show();
		} else {
			$('#outside_sco').hide();
		}
	});
	
	$('#hear select option').click(function(){
		if(this.value == "website" || this.value == "email" || this.value == "other"){
			$('#more_hear').show();
		} else {
			$('#more_hear').hide();
		}
	});
}