jQuery(document).ready(function($){

	$('#first').focus();
	$('#first, #email').css({ 'background-color': '#FDDA10' }).focus(function(){
		checkError($(this).attr('id'));
	});

	$('#cim').focus(function(){
		checkError($(this).attr('id'));
	});
	
	$('#public').click(function(){
        if($(this).attr('checked')==1)
	        $('#cim').css({ 'background-color': '#FDDA10' });
		else
            $('#cim').css({ 'background-color': '#EEEEEE' });
	});
	
	$('#btnDown').click(function(){
        checkForm();
	}).css({ 'border': 'none' }).mouseover(function(){
		$(this).css({ 'cursor': 'pointer' });
	})
});

jQuery(document).ready(function($){
	jQuery('#is').show('slow');
});
