// set input, textarea focus bg
$(document).ready(function() {
	$('#content input[type="text"], #content textarea').focus(function() {
		$(this).parent().css('background-image', 'url(wp-content/themes/pealo/image/content-section-hover.gif)');
	})
	$('#content input[type="text"], #content textarea').blur(function() {
		$(this).parent().css('background-image', 'none');
	})
})