$('.subpageList li:last').css('border', 'none');
$('.subpageList li:last').css('padding-bottom', '0');
$('#registerEmail')
.focus(function() {
	if($(this).val() == 'Email Address') {
		$(this).val('');
	}
})
.blur(function() {
	if($(this).val() == '') {
		$(this).val('Email Address');
	}
});
$('#registerUsername')
.focus(function() {
	if($(this).val() == 'Username') {
		$(this).val('');
	}
})
.blur(function() {
	if($(this).val() == '') {
		$(this).val('Username');
	}
});
$('#registerFirstName')
.focus(function() {
	if($(this).val() == 'First Name') {
		$(this).val('');
	}
})
.blur(function() {
	if($(this).val() == '') {
		$(this).val('First Name');
	}
});
$('#registerLastName')
.focus(function() {
	if($(this).val() == 'Last Name') {
		$(this).val('');
	}
})
.blur(function() {
	if($(this).val() == '') {
		$(this).val('Last Name');
	}
});
$('#registerHomePhone')
.focus(function() {
	if($(this).val() == 'Home Phone') {
		$(this).val('');
	}
})
.blur(function() {
	if($(this).val() == '') {
		$(this).val('Home Phone');
	}
});
$('#registerWorkPhone')
.focus(function() {
	if($(this).val() == 'Work Phone') {
		$(this).val('');
	}
})
.blur(function() {
	if($(this).val() == '') {
		$(this).val('Work Phone');
	}
});
$('#registerMailAddress')
.focus(function() {
	if($(this).val() == 'Preferred Mailing Address') {
		$(this).val('');
	}
})
.blur(function() {
	if($(this).val() == '') {
		$(this).val('Preferred Mailing Address');
	}
});
$('#registerCity')
.focus(function() {
	if($(this).val() == 'City') {
		$(this).val('');
	}
})
.blur(function() {
	if($(this).val() == '') {
		$(this).val('City');
	}
});
$('#registerState')
.focus(function() {
	if($(this).val() == 'State') {
		$(this).val('');
	}
})
.blur(function() {
	if($(this).val() == '') {
		$(this).val('State');
	}
});
$('#registerZIP')
.focus(function() {
	if($(this).val() == 'ZIP') {
		$(this).val('');
	}
})
.blur(function() {
	if($(this).val() == '') {
		$(this).val('ZIP');
	}
});
$('#registerSummerEmail')
.focus(function() {
	if($(this).val() == 'Summer Email (if different)') {
		$(this).val('');
	}
})
.blur(function() {
	if($(this).val() == '') {
		$(this).val('Summer Email (if different)');
	}
});
$('#registerSchoolName')
.focus(function() {
	if($(this).val() == 'School Name') {
		$(this).val('');
	}
})
.blur(function() {
	if($(this).val() == '') {
		$(this).val('School Name');
	}
});
$('#registerSchoolCorp')
.focus(function() {
	if($(this).val() == 'School Corporation') {
		$(this).val('');
	}
})
.blur(function() {
	if($(this).val() == '') {
		$(this).val('School Corporation');
	}
});
$('#loginUsername')
.focus(function() {
	if($(this).val() == 'Username') {
		$(this).val('');
	}
})
.blur(function() {
	if($(this).val() == '') {
		$(this).val('Username');
	}
});
$('#searchInput')
.focus(function() {
	if($(this).val() == 'Search') {
		$(this).val('');
	}
})
.blur(function() {
	if($(this).val() == '') {
		$(this).val('Search');
	}
});
$('<span>Password</span>').appendTo('.loginPassword');
$('.loginPassword input')
.focus(function() {
	$(this).parent().children('span').hide();
})
.blur(function() {
	if($(this).val() == '') {
		$(this).parent().children('span').show();
	}
});
$('.loginPassword span').click(function() {
	$(this).hide();
});


$('fieldset span:last').css('margin-bottom', '10px');
