$(document).ready(function() {
  if ($("body").hasClass("print-view")) window.print();
  $(".birthday-datepicker").datepicker({dateFormat: "d MM yy", changeYear: true, changeMonth: true, yearRange: "1900:c"});
  $(".facebox").facebox();
  $(".tiptip").tipTip({keepAlive: true});
  $("#user_subscription_code").keyup(function() {
    if ($(this).val().length > 10) $(this).val($(this).val().substr(0, 10));
  });
  
  $("#admin-select-brand a").click(function() {
    $.ajax({
      url: $(this).attr("href"),
      dataType: "html",
      type: "GET",
      success: function(data) {
        $("#admin-select-brand").html(data);
      }
    });
    return false;
  });  
});

