jQuery for UI accordion QUESTION Help!

jQuery for UI accordion QUESTION Help!

Hey, I currently have a basic theme for the web developed through VS2008 obv. I want to add Accordion function into my body page but I dont want it to have the basic theme layout, which automatically puts it on when I use the accordion UI. Is there a way that I could just make it clear and no theme applied but still have the functionality of the accordion?
 
currently, I have.....
 

< script type ="text/javascript">

$(

function () {

$(

"#accordion" ).accordion({active: 2, collapsible: true , clearStyle: true })

});

</ script >
 
in my body....

<div id="accordion" style="width:600px; " >

<h3 ><a href="" align=top;>nbsp; Section 1</a></h3>

<div class="demo1" style="padding-left:160px;">

<a href="#" >TEST</a></div>

<h3><a href="#">nbsp; Section 2</a></h3>

<div class="demo1">

<a href="#">TEST</a></div>

</div>

 
Thanks!