   function checkit()
   {
	   var er = 0;
	   var msg = "";
	   if ($("#ftel").val()=="") { er = 1; msg+="- Óêàæèòå êîíòàêòíûé òåëåôîí\n"; }
	   if ($("#fwhois").val()=="") { er = 1; msg+="- Óêàæèòå êîíòàêòíîå ëèöî\n"; }
	   if (er>0) {
	       alert(msg);
	       return false;
	   }
       else {
           return true;
       }
   }
  $(document).ready(function(){
			$("a.withfancy").fancybox({
				'zoomSpeedIn'		:	500,
				'zoomSpeedOut'		:	500,
				'overlayShow'		:	false
			});
   /*
    $(\".introcats .z1\").hover(
      function () {
        $(this).find(\".over\").show();
      },
      function () {
        $(this).find(\".over\").hide();
      }
    );
  */
      $(".incats .listit div").hover(
      function () {
        $(".incats .listit thumb").css("z-index", "1");
        $(this).css("z-index", "500");
        $(this).find(".v").show();
        if ($.browser.msie) {
        }
      },
      function () {
        $(this).find(".v").hide();
        $(".incats .listit thumb").css("z-index", "1");
        $(this).css("z-index", "1");
        if ($.browser.msie) {
        /* $(this).css("width", "67px");
        $(this).css("height", "67px"); */
        }
      }
    );
  });
