I have problems with loading javascripts

You seem to be loading both file/folder names into the queue.

get_template_directory_uri() . 'http://fitclaw.com/wp-content/themes/Coming%20Soon/js/jquery.js

should only be:

get_template_directory_uri() . '/js/jquery.js'

And so-on and so-forth.

because get_template_directory_uri returns, or should be returning this string for you: 'http://fitclaw.com/wp-content/themes/Coming%20Soon/'

And you should always try to use those relative paths versus hard-coding them.