jQuery(document).ready(function($){

	$('#first_std').focus();
	$('#first_std, #email, #school_std').css({ 'background-color': '#FDDA10' }).focus(function(){
		checkError_std($(this).attr('id'));
	});

	$('#cim_std').focus(function(){
		checkError_std($(this).attr('id'));
	});
	
	$('#public_std').click(function(){
        if($(this).attr('checked')==1)
	        $('#cim_std').css({ 'background-color': '#FDDA10' });
		else
            $('#cim_std').css({ 'background-color': '#EEEEEE' });
	});
	
	$('#btnDown').click(function(){
        checkForm_std();
	}).css({ 'border': 'none' }).mouseover(function(){
		$(this).css({ 'cursor': 'pointer' });
	})
});