$(document).ready(function(){
	$('#send_msg').click(function(){
		var send = true;
		if($('#shfeed').children('#contact').val() == 'Имя, телефон, e-mail') send = false;
		if($('#shfeed').children('#message').val() == '') send = false;
		
		if(send == true) {
			$('#shfeed').submit();
			return false;
		}
			else {
				if($('#shfeed').children('.error_feed').size() == 0){
					$('#shfeed').prepend('<div class="error_feed">Ошибка! Заполнены не все поля!</div>');
					$('#shfeed').children('.error_feed').show('fast');
					setTimeout(function(){$('#shfeed').children('.error_feed').hide('fast', function(){$(this).remove();});}, 5000);
				}
				return false;
			}
			
		return false;
	});
	
	$('#show_other_adr').click(function(){
		$('.other_adr').slideToggle('slow');
		return false;
	});
	
	$('#show_other_adr1').click(function(){
		$('.other_adr1').slideToggle('slow');
		return false;
	});

	if($('#peoples').size() > 0){
		$('#peoples').fancybox();
		$('#fancybox-left').remove();
		$('#fancybox-right').remove();
	}

	if($('#fb_popup').size() > 0){
		$("#fb_popup a").fancybox({
			'width'				: 545,
			'height'			: 540,		
			'autoScale'     	: false,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'				: 'iframe'
		});
	}
});
