$(document).ready(function(){

	//hide options_body
	$(".options_body").hide();


	//toggle options_body_with_head
	$(".options_head").click(function(){
	  $(this).next(".options_body").slideToggle(1200)
	  return false;
	});
	


});