
function clearValue(formfield){
	if (formfield.defaultValue==formfield.value)
		formfield.value = ""
	}
	function restoreValue(formfield){
	if (formfield.value=="")
		formfield.value = formfield.defaultValue
	}

$(function() {

	Cufon.replace('#body h1, #body h2',{textShadow: '0px 1px #fff'});

});

$(document).ready(function(){
	$('#schedule table tr:odd').addClass('odd');
	$('#schedule tr:first').addClass('hr');
	$('#schedule td:eq(1)').addClass('hr-class');
	$('#schedule td:eq(2)').addClass('hr-days');
	$('#schedule td:eq(3)').addClass('hr-times');
	$('#schedule td:eq(4)').addClass('hr-openings');
	$('#schedule td:eq(5)').addClass('hr-tuition');

});