Javascript stopped working [closed]

One of your scripts doesn’t use jQuery correctly:

$(document).ready(function () {}

This cannot work because jQuery runs in no conflict mode in WordPress. To make it work change the script to:

jQuery(document).ready(function ($) {}