$.noConflict();
  jQuery(document).ready(function($) {
	$('#s').each(function() {
			$(this).data('value', $(this).val());
	}).focus(function() {
			if (!$(this).hasClass('focused')){
					$(this).val('').addClass('focused');
			}
	}).blur(function() {
			if ($(this).val()==''){
					$(this).val($(this).data('value')).removeClass('focused');
			}
	});
  });
