(function(){
	$( '#proNotusAbout div.text h3' )
		.attr( 'tabindex', 0 )
		.bind( 'mousedown keydown', function( e ){
			with( $( this ).parent() ) {
				switch( e.which ) {
					case 1:
						addClass( 'hideFocus' );
						toggleClass( 'expand' );
						break;
					case 13:
						removeClass( 'hideFocus');
						toggleClass( 'expand' );
				}
			}
		});
})()
