/**
 * registerFrom
 *
 * @author John Milmine <john@foxwebsites.co.nz>
 * @copyright 2008 Fox Web Solutions
 */
var focused = null;
$(document).ready(function(e) {
	// Search Box 
	function fadeAway() {
		$(this).children().fadeIn();
	}
	$('input#roletype_Student').parent().click(function() {
		if ($(this).children('input#roletype_Student').attr('checked') == true) {
			$('fieldset.hidden').children().show();
			$('fieldset.hidden').slideDown();
		}
	});
	$('input#roletype_Caregiver').parent().click(function() {
		if ($(this).children('input#roletype_Caregiver').attr('checked') == true) {
			$('fieldset.hidden').slideUp().children().fadeOut('fast');
		}
	});
	if ($('input#roletype_Student').attr('checked') == true) {
		$('fieldset.hidden').show();
	}
	
});