$(document).ready(function() {
    $('#finder .go').hide();
    $('#finder .btn2 a:first').click(function() {
		$('#finder .go').toggle();
    	$(this).toggleClass('exp');
    	$('#finder .go input:first').focus();
    	return false;
    });
});
