	 var $j = jQuery.noConflict();
     // Use jQuery via jQuery(...)
     $j(document).ready(function(){
	 //START SITE SPECIFIC FUNCTIONS HERE//
	 
	$j('.dropheader').toggle(
  		function() {
  			$j(this).parent().find(".droplist").slideDown(300);
	 	
  		},
  		function(){
  			$j(this).parent().find(".droplist").slideUp(300);
  		}
 	 );
 
});