jQuery(document).ready(function($) {
	$('.text').focus(function() {
		$(this).addClass('on');
	}).blur(function() {
		$(this).removeClass('on');
	});
});
