$(document).ready(function() {
  $("#frm_search").bind("submit", function() {
    location.href="/shops/search/" + $("#kw").val();
    return false; 
  });
  $("#kw").bind("click", function() {
    $(this).select();
  });
  $("ul.form li").addClass("clearfix");
  
  
  $('table.data tr').mouseover(function(){
    $(this).addClass('row-hover');
  });
  $('table.data tr').mouseout(function(){
    $(this).removeClass('row-hover');
  });
  
   $('table.cal tr').mouseover(function(){
    $(this).addClass('row-hover');
  });
  $('table.cal tr').mouseout(function(){
    $(this).removeClass('row-hover');
  });
  
  
  $('input, textarea, select').focus(function(){
    $(this).addClass('selected');
  });
  
  $('input, textarea, select').blur(function(){
    $(this).removeClass('selected');
  });
  
  jQuery("a").each(function(){jQuery(this).click(function(){this.blur();})})
  
});
