jQuery(document).ready(function() {


	//toggle
	$('#content').find('dd').hide().end().find('dt').click(function() {
     $(this).next().slideToggle();
   });
	
	/*$('#content').find('dd').click(function() {
     $(this).slideToggle();
   });*/
	
	
	 $('#content').find('dt').hover(function(){
         $(this).addClass("cursor_pointer");
		 $(this).addClass("red");
       },function(){
        $(this).removeClass("cursor_pointer");
		$(this).removeClass("red");
      }); 
	

});