function complite()
{
	$('.closebtn').click(tb_remove);
	$('.text').focus(function(){
		var old_value = this.getAttribute('old_value');
		if(old_value==null)
		{
			this.setAttribute('old_value',this.value);
			old_value = this.value;
		}
		if(old_value==this.value)
			this.value = '';
	});
	$('.text').blur(function(){
		if(this.value=='')
			this.value = this.getAttribute('old_value');
	});
	$('form.ask_form').submit(function(){
		if(!check_input('question','Текст Вопроса'))
			return false;
		if(!check_input('name','Ваше имя'))
			return false;
		if(!check_input('phone','Контактный телефон'))
			return false;
		if(!check_input('email','E-mail'))
			return false;
		
		return true;
	});
}
function check_input(id,field)
{
	var $val = $('#TB_ajaxContent #'+id).val();
	if($val=='' || $val==field)
	{
		$('#TB_ajaxContent #'+id).focus();
		alert('Заполните поле '+field);
		return false;
	}
	return true;
}

$(document).ready(function (){

	$("#mainmenu li.parent").hover(function(){
		$(this).find('ul').show();
	}, 
	function(){
		$(this).find('ul').hide();
	});
});
