jQuery is JavaScript. It's just another tool. Its big benefit is that you can manipulate the DOM and perform AJAX requests much easier.
For example, to get all links by class name in JavaScript (using this function) is:
function getElementsByClassName(className, tag, elm){
var testClass = new RegExp("(^|\\s)" + className + "(\\s|$)");
var tag = tag || "*";
var elm = elm || document;
var elements = (tag == "*" && elm.all)? elm.all : elm.getElementsByTagName(tag);
var returnElements = [];
var current;
var length = elements.length;
for(var i=0; i<length; i++){
current = elements[i];
if(testClass.test(current.className)){
returnElements.push(current);
}
}
return returnElements;
}
var elements = getElementsByClassName(document,'a','myclass');
The same using jQuery*:
var elements = $("a.myclass");
Of course, jQuery would do similar things behind the scenes but the point is that you don't need to know about it (and more importantly, don't need to rewrite it all). There are lots of people coming up with clever things for jQuery (and tests, so you know it works cross browser).
Use jsFiddle to quickly play with some examples in jQuery (look at the jQuery docs). Don't necessarily set out to rewrite your entire JavaScript using jQuery. Just start using it for DOM operations/AJAX requests (even something as simple as using the show or hide methods). Eventually you'll get used to using jQuery and eye up your older code to rewrite. Just to give you an example, I once rewrote a 200-300 line piece of JavaScript into about 20 lines with jQuery. The reason for the massive difference is because I was able to remove all the 'helper' functions (like getElementsByClassName one above) since jQuery handles that for me.
Good luck :)
* The pedantic among you will know it's not entirely the same, since it returns the jQuery object - but this can really be ignored because it'll do the same result.