$(document).ready(function() {
  //ロールーバーの設定
  $(".rollover").rollover("_ov");
  //条件で検索
  $("#search_enter")
  .click(function() {
    goNext2(1,1,'');
    move_to("body");
    return false;
  })
  //条件クリア
  $(".cond_clear").click(function() {
    document.cond.reset();
    move_to("#list_top");
    return false;
  });
  $("#estate_list tbody tr")
  .mouseover(function() {
    $(this).css("background-color", "#E3EFFD");
  })
  .mouseout(function() {
    $(this).css("background-color", "#fff");
  });
  $('body').append(
    $('<div>')
    .attr('id','tooltip')
    .css({
       'position':'absolute'
      ,'top': '0px'
      ,'left': '0px'
      ,'background-color':'transparent'
      ,'width':img_w+'px'
      ,'height':img_h+'px'
      ,'z-index':'9999'
      ,'visibility':'hidden'
    })
    .append($('<a>').append($('<img>').attr('border','0')))
    .mouseover(function(e) {
      if (objTimer != undefined) clearTimeout(objTimer);
    })
    .mouseout(function(e) {
      if (objTimer != undefined) clearTimeout(objTimer);
      hideTip();
    })
  );
});

function move_to(str) {
  $.scrollTo(
    $(str)
   ,{speed: 1000, axis:'y', margin: true}
  );
}
