// JavaScript Document

// To use any effect just remove the comment &amp; change respective selectors

 $(document).ready(function(){							


//accordian effect 1
 $(".accordian .descdv:first").show();

$(".accordian li").click(function(){
if ($(".descdv", this).is(":hidden")) {					   
$(".descdv").slideUp("slow");
$("a span").removeClass("down");
$("a span", this).addClass("down");
$(".descdv", this).slideDown("slow");
} 
  });
		
 $("ul.topnav li").hover(function(){
	//alert("dfd");
 	$("ul:first", this).css ("display", "block");
 	//$("li", this).hide ();
	$("li", this).slideDown ("slow");
 	$("a:first", this).addClass ("hover");
 	return false;
 },function(){
 $("ul:first", this).css ("display", "none");
 $("a:first", this).removeClass ("hover");
  });


  });		
