// JavaScript Document

$(document).ready(function(){

						 $(".dorp_down_cont:gt(0)").hide();
						 $(".title_drop:eq(0)").toggle(function(){															
														   $(this).removeClass("title_drop_down");
														   $(this).next(".dorp_down_cont").slideUp();
														   },
														   function(){
															$(this).addClass("title_drop_down");
															$(this).next(".dorp_down_cont").slideDown();
														   }
														   );
						   $(".title_drop:gt(0)").toggle(function(){
																  $(this).addClass("title_drop_down");
																  $(this).next(".dorp_down_cont").slideDown();
																  },
																  function(){
																  $(this).removeClass("title_drop_down");
																  $(this).next(".dorp_down_cont").slideUp();	  
																  }
																  );
						   });

