﻿  	$(document).ready(function() {

  		$(".addtowishlist a").click(function() {
  			$(this).next('span').html('<img src="images/tiny_spin.gif" />')
  			var prodId = this.id.replace('atwl_', '');
  			AddToWishList(prodId);
  		});


  		$('#<%=Me.SearchWithinTextBox.ClientID%>').keypress(function(e) {
  			if (e.which != null && e.which == 13) {
  				var jqButton = $(this).parent().next().children('input');
  				if (jqButton != null) {
  					jqButton.click();
  				}
  				return false;
  			} else {
  				return true;
  			}
  		});
  	});
    
    function AddToWishList(productId) {
      CartService.AddToWishlist({ 'ProductID': productId }, function(resp) {
        if (resp) {
          var msg = '';
          if (resp.StatusCode == 200) {
            msg = '';
            if (resp.RedirectUrl.length > 0) {
              window.location = resp.RedirectUrl
            }
          }
          else {
            msg = 'Error adding to Wishlist';
          }

          $('#atwl_' + productId).next().css('color', 'red').text(msg);
        }
      });
    }
