$(document).ready(function(){
	$("ul.nav").superfish({
		animation : { opacity:"show", height:"show" }
	});


   /* Dealer accordian */
   //slides the element with class "dealer_body" when paragraph with class "dealer_head" is clicked
   $("#firstpane p.dealer_head").click(function()
   {
      $(this).css({backgroundImage:"url(down.png)"}).next("div.dealer_body").slideToggle(300).siblings("div.dealer_body").slideUp("slow");
      $(this).siblings().css({backgroundImage:"url(left.png)"});
   });

   //slides the element with class "dealer_body" when mouse is over the paragraph
   $("#secondpane p.dealer_head").mouseover(function()
   {
      $(this).css({backgroundImage:"url(down.png)"}).next("div.dealer_body").slideDown(500).siblings("div.dealer_body").slideUp("slow");
      $(this).siblings().css({backgroundImage:"url(left.png)"});
   });


});

