/********************************
Создание выпадающих форм для форума
*********************************/

// Короткая запись $(document).ready(function(){...})
// http://docs.jquery.com/Tutorials:Multiple_%24(document).ready()
$(function(){
	
	$("div.new_message form.hide").hide();
	
	$("div.new_message h3 a").toggle(
		function(){
			$(this).parents("h3").siblings("form").slideDown("slow");
		},
		function(){
			$(this).parents("h3").siblings("form").slideUp("slow");
		}
	);
	
	// Всем элементам форм внутри fieldset
	/*$("fieldset :input").focus(function(){
		//При фокусировке родительскому fieldset выставляем класс,
		// а у соседей, таких же fieldset, этот класс убираем
		// (исправляет поведение чекбокса, после его деактивации)
		$(this).parents("fieldset:first").addClass("focused").siblings().each(function(){$(this).removeClass("focused")})
	}).blur(function(){
		// Убираем класс после расфокусировки
		$(this).not(":checkbox",":radio","@type='file'").parents("fieldset:first").removeClass("focused")
	})*/
})