ml_txt = 'Введите Ваш e-mail';
$(document).ready(function(){
	$("input[name='email']").focus(function () {
		if($(this).val() == ml_txt)
			$(this).removeAttr('value');
	});
	$("input[name='email']").blur(function () {
		if($(this).val() == '')
			$(this).val(ml_txt);
	});
	$(".cmm > strong.opn> a").click(function(){
		if ( $(this).parent().parent().is(":not(.act)") )
			$(this).parent().parent().addClass("act");
		else
			$(this).parent().parent().removeClass("act");
		return false;
	});
	$("a.rpl").click(function(){
		if ( $(".cmm").is(":not(.act)") )
			$(".cmm").addClass("act");
	});
});