   $(document).ready(function(){
             $('.fancy').fancybox();
             $('.message').dialog({bgiframe: true,modal: true,buttons: {    Ok: function() {$(this).dialog('close');}}});
             
             $('.menus a[href='+window.location.pathname+']').addClass('active');
             
             $('.callback_form_form').submit(function(){
                 
                 if($('.callback_form_form input[name=name]').val()==''){alert('Введите имя');return false;}
                 if($('.callback_form_form input[name=email]').val()==''){alert('Введите почту');return false;}
                 if($('.callback_form_form textarea[name=callback]').val()==''){alert('Введите ваш отзыв');return false;}
                 
             });
         });
