$(document).ready(function(){
  	$('.gallery').lightbox();
	$('#text div').hide();
	$('#text a').click(function(){
		$(this).next('div').slideToggle("fast");
	});
});

function feedback(obj){
	if (obj.name.value == "") {
		alert("Введите имя пользователя.");
	}
	else 
		if (obj.subj.value == "") {
			alert("Сообщение не должно быть пустым.");
		}
		else {
			$.post("/ajax/feedback/", {
				name: obj.name.value,
				email: obj.email.value,
				number: obj.number.value,
				subj: obj.subj.value
			}, function(){
				var tm=$('.feedback_form').html();
				var h = '<h1><center>Ваше пожелание будет рассмотрено. Спасибо.</center></h1>';
				$('.feedback_form').html(h);
				setTimeout(function() { $('.feedback_form').html(tm) }, 2000);
			});
		}
}
