Load jQuery only on home page

WordPress adds a series of classes to the body tag (assuming your theme-designer used body_class()) depending on which page you’re currently viewing. On the homepage, WordPress adds the home class. You could use this to target only the sidebar viewed on the homepage:

body.home .classname {
    position: relative;
    top: -300px;
}