/**
 * @name clearOnFocus
 */
function clearOnFocus()
{
	$('input.clearOnFocus').css('font-style', 'italic');
	$('input.clearOnFocus').css('color', '#919191');
	$('input.clearOnFocus').bind('focus change', function() {
		$(this).css('font-style', 'normal');
		$(this).css('color', '#4F4F4F');
		if (!$(this).data('originalValue')) {
			$(this).data('originalValue', $(this).val());
		}
		if ($(this).val() != '' && $(this).val() == $(this).data('originalValue')) {
			$(this).val('');
		}
	}).blur(function() {
		if ($(this).val() == '') {
			$(this).css('font-style', 'italic');
			$(this).css('color', '#919191');
			$(this).val($(this).data('originalValue'));
		}
	});
}

/**
 * @name onLoad
 */
$(function() {
	clearOnFocus();
});
