$(document).ready(function() {
	$('.pas_text').focus(function() {
		$(this).hide();
		$(this).next('input').show().focus();
	});
	
	$('.box_top').click(function() {
		$(this).toggleClass('open');
		$(this).next('div').slideToggle('slow');
	});
});
