Here is the page url http://meracd.com/design/disc_designer.php?disc=cd
I’ve used jqueryUI for the slider. But it isn’t working. I’ve loaded jquery and jquery UI before the custom.js script.

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You have multiple instances of jQuery on your page.
Your jQuery UI Slider Plugin is attaching to
window.jQuery(which is version 1.6.2), but your custom.js code is trying to run againstwindow.$(which is version 1.6.4).You need to either:
noConflict()to resolve which jQuery gets access to the$variable.