Jquery core affecting another javascript's layout

Jquery core affecting another javascript's layout

Hi there,
 
Is it possible to not include the jquery core in asp.net forms and still make the jquery declaration in the form itself work? I'm having problems with the core of the jquery, in which it affects the layout of my webform, but when i comment it out, my jquery wont work, I'm using this as a slider for my footer.but basically it just hides and show a hidden content.
 
Any kind souls can advise me what to do?
 
Im using this core:
< script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"></script>
 
And for my own jquery:

<

script src ="sliding.js" type ="text/javascript"></ script >

$(document).ready(

function() {

$(

"#AccountHide").click(function() {

$(

"#AccountShow").slideToggle("slow");

//$("#AccountShow").height($(document).height()).slideToggle("slow");

$(

"#AccountHide").hide();

$(

"body").css({ 'overflow': 'hidden' });

$(

"#blanket").css({ 'background-color': 'Black', opacity: 0.7, 'width': $(window).width(), 'height': $(window).height(), 'overflow': 'visible', 'z-index': 2 }).show();

$(

this).toggleClass("active"); return false;

});

$(

"#btnHomeCancel").click(function() {

$(

"#AccountShow").slideToggle("slow");

$(

"#blanket").hide();

$(

"body").css({ 'overflow': 'auto' });

$(

"#AccountHide").show();

$(

this).toggleClass("active"); return false;

});

$(

"#btnAccSettings").click(function() {

$(

"#AccountShow").slideToggle("slow");

$(

"#AccountSettings").slideToggle("slow");

//$("#AccountSettings").height($(document).height()).slideToggle("slow");

$(

this).toggleClass("active"); return false;

});

$(

"#btnAccountCancel").click(function() {

$(

"#AccountSettings").slideToggle("slow");

$(

"#blanket").hide();

$(

"body").css({ 'overflow': 'auto' });

$(

"#AccountHide").show();

$(

this).toggleClass("active"); return false;

});

});