jQuery(function($) {
    $("td.menu_main_one").hover(function () {

        $(this).children("div.vip").css("left", $(this).offset().left+"px");
    },
  function () {
    $(this).children("div.vip").css("left","-2000px");
  });
    $("a[rel=sendmail]").click(function() {
        $(this).parents("div").append('<br /><br /><form method="POST" action="/bitrix/templates/ru-kurort/ajax/sendmail.php"><input type="hidden" name="mail" value="'+$('a[rel=mail]').text()+'"><table cellspacing="0" cellpadding="0" border="0"><tbody><tr><td align="left">Ваше имя:</td><td><input size="30" value="" name="name" /></td></tr><tr><td align="left">Ваш email:</td><td><input size="30" value="" name="email" /></td></tr><tr><td align="left" colspan="2">Сообщение:</td></tr><tr><td align="left" colspan="2"><textarea style="WIDTH: 296px; HEIGHT: 114px" name="text" rows="6" cols="43"></textarea></td></tr><tr><td align="right" colspan="2"><input style="WIDTH: 94px; HEIGHT: 26px" type="submit" value="Отправить" name="send" /></td></tr></tbody></table></form>');
        //alert($(this).parents("div").html());
    });
    /*$("#dvigpic").bind("click", function(e) {
        var popr=$(this).offset().left;
        if(e.pageX-popr<=264){
            //$(this).css("left",popr+"px");
            $(this).children('.mainimg').animate({"left": "-=50px"}, "slow");
        }
        else{
            $(this).children('.mainimg').animate({"left": "+=50px"}, "slow");
        }
    });
    $("#dvigpic").mouseover(
      function (e) {
        var popr=$(this).offset().left;
        if(e.pageX-popr<=264){
            $(this).children('.mainimg').animate({"left": "-332px"}, 4000);
        }
        else{
            $(this).children('.mainimg').animate({"left": "0px"}, 4000);
        } 
      }).mouseout(
      function () {
        $(this).children('.mainimg').stop();
      });*/


});

