jQuery(document).ready(function($) { 
  //swap form values when active
  swapValues = [];
  $(".swap_value").each(function(i){
      swapValues[i] = $(this).val();
      $(this).focus(function(){
          if ($(this).val() == swapValues[i]) {
              $(this).val("");
          }
      }).blur(function(){
          if ($.trim($(this).val()) === "") {
              $(this).val(swapValues[i]);
          }
      });
  });
  // add ashford pro
  $("ul.sf-menu").superfish({
      //firstOnClick: true,
      autoArrows:    true,
      dropShadows:   false,
      hoverClass:    'sfHover',
      pathClass:     'sfActive'
  });
  // hover effect query posts in sidebar
  /*
  $('#sidebar.grid_4 .widget.posts .post,#sidebar.grid_4 .widget.posts .page').hover(
    function () {
      $(this).addClass("hover");
    }, 
    function () {
      $(this).removeClass("hover");
    }
  );
  */
});
