jQuery(document).ready(function(){
	jQuery('#s').focus(function(){
		jQuery('.screen-reader-text').hide();
	});
	jQuery('#s').blur(function(){
		if(!jQuery('#s').val()){
			jQuery('.screen-reader-text').show();
		}
	});
})
