﻿
$(document).ready(function () {
  $('#btnSearch').mouseover(function () {
    $('#searchBox').animate({ left: 0 });
  });

  $('.search').mouseleave(function () {
    if ($('#txtSearch').val().length == 0) {
      $('#searchBox').animate({ left: 164 });
    }
  });

  $('.exitLink').click(function () {
    var s = s_gi('npmightydogcomv2');
    s.linkTrackVars = 'prop33,trackingServer,trackingServerSecure';
    s.trackingServer = 'metrics.purina.com';
    s.trackingServerSecure = 'smetrics.purina.com';
    s.prop33 = $(this).attr('rel');
    s.tl(this, 'e', $(this).attr('href'));
  });

  $('#btnSearch').click(function () {

    var txt = $('#txtSearch').val();
    window.location = "/search/?q=" + txt;

    return false;
  });

  $('#txtSearch').keydown(function (e) {
    if ((e.keyCode || e.which) == 13) {
      var txt = $(this).val();
      window.location = "/search/?q=" + txt;

      return false;
    }
  });
});
