$(document).ready(function(){
	
	$("form textarea[class=default]").live('focus', function(){
		
		if($(this).attr('value') == 'Question'){
			$(this).attr('value', '');
		}
		
		$(this).attr('class', 'expanded');
	});
	
	$("form textarea[class=expanded]").live('blur', function(){
		
		if($(this).attr('value') == '' || $(this).attr('value') == 'Question'){
			$(this).attr('value', 'Question');
			$(this).attr('class', 'default');
		}
	});

});

