$(function() {
	$("#mainArea :input")
		.focus(function() {
			$(this).css("background-color", "#fefbcf");
		})
		.blur(function() {
			$(this).css("background-color", "#FBFBFB");
		})
		
		$("#header :input").focus(function() {

			if($(this).val() == $(this).attr('defaultValue'))
				$(this).css('color', '#333').val('');
			}
		).blur(function() {

			if(jQuery.trim($(this).val()) == "") {
				$(this).css('color', '#999').val($(this).attr('defaultValue'));
			}
		})

		$("#viewBox :input").focus(function() {

			if($(this).val() == $(this).attr('defaultValue'))
				$(this).css('color', '#333').val('');
			}
		).blur(function() {

			if(jQuery.trim($(this).val()) == "") {
				$(this).css('color', '#999').val($(this).attr('defaultValue'));
			}
		});
});
